<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"> @charset "utf-8";

 :root {
     font-size: 16px;
 }

 * {
     box-sizing: border-box;
     margin: 0;
 }

 html {
     min-height: 100%;
 }

 body {
     color: #000;
     font: 1em/1.3em Arial, sans-serif;
 }

 #wrapper {
     position: relative;
     max-width: 56.25rem;
     margin: 1rem auto;
     border: solid 1px #000;
     background-color: #fff;
     overflow: hidden;
     padding: 64px 64px 16px;
 }

 p {
     padding-bottom: 1rem;
 }

 h1 {
     margin: 0 0 16px;
     font-size: 1em;
     line-height: 1.1;
 }

 h1 span {
     white-space: nowrap;
 }

 h2 {
     font-size: 1em;
     line-height: 1.3;
     margin-bottom: 1rem;
 }

 h3 {
     font-size: 1.2em;
     line-height: 1.3;
     margin-bottom: 3rem;
 }

 :is(a:link, a:visited, a:hover, a:active) {
     color: #000;
     text-decoration: none;
 }

 p a.ins {
     color: #4169E0;
     text-decoration: underline;
 }

 .color {
     color: #FF0000;
 }

 img {
     max-width: 100%;
     height: auto;
 }

 ul {
     padding: 0 0 1rem;
     list-style: none;
 }

 ul li {
     padding-left: 30px;
 }

 ul li:before {
     content: "\2022";
     font-size: 1.3em;
     float: left;
     margin: 0 0 0 -30px;
 }

 header {
     position: absolute;
     top: 42px;
     right: 80px;
 }

 .logo {
     width: 215px;
 }

 article .box {
     width: 524px;
 }

 article .box .section :is(p, h1) {
     text-align: center;
     padding: 0;
     margin: 0 0 5px;
     line-height: 1.6
 }

 article .box .section {
     margin: 16px 0;
 }

 article &gt; p:last-of-type {
     text-align: center;
     margin: 80px 0 0
 }

 .box :is(h1, h3, p),
 footer p,
 article &gt; p:last-of-type {
     font-style: italic;
 }

 .text {
     text-align: justify;
 }

 footer {
     width: 252px;
     position: absolute;
     top: 8.7rem;
     right: 2rem;
 }

 @media only screen and (max-width:56.187rem) {
     #wrapper {
         border: none;
         margin: 0 auto;
         padding: 1rem;
     }

     p span {
         white-space: nowrap;
     }

     header {
         display: flex;
         justify-content: center;
     }

     h3 {
         text-align: center;
         margin-bottom: 1.25rem
     }

     header,
     footer {
         position: static;
     }

     footer,
     article .box {
         width: 100%;
     }

     footer p {
         text-align: center;
     }

     .text {
         text-align: left;
     }

     article .box .section {
         margin: 16px 0 2rem;
     }

     article &gt; p:last-of-type {
         margin: 16px 0 0
     }

     footer p:first-of-type br:first-of-type {
         display: none;
     }
 }
</pre></body></html>