@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3 Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 2rem 3rem 0.5rem 2rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.blue {
    color: #0000FF;
    text-decoration: underline;
}
p {
    padding-bottom: 0.25rem;
    hyphens: auto;
}
h1 {
    margin: 0.5rem 0;
    font-size: 1.5em;
    line-height: 1.2;
}
h1 span {
    font-size: 0.72em;
    font-weight: normal;
    display: inline-block;
    margin-top: 0.25rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin: 0.25rem 0 0.5rem;
}
ul {
    padding: 0 2.35rem 0.5rem 1.5rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "\2022";
    font-size: 1.3em;
    float: left;
    margin: -3px 0 0 -1rem;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    display: flex;
    justify-content: center;
}
header img {
    display: block;
}
article {
    padding: 1.5rem 1.5rem 0.5rem;
    background: #DCE1F0;
}
article p {
    text-align: justify;
    hyphens: auto;
    line-height: 1.5em;
}
article p span {
    word-spacing: 6px;
}
footer>p {
    text-align: center;
    font-size: 0.9em;
    line-height: 1.3em;
    padding-top: 0.25rem;
}
footer section {
    display: flex;
    justify-content: center;
    margin: 0.75rem 0 0 2rem;
}
footer section div {
    display: flex;
    align-items: flex-start;
}
footer section div:first-of-type p {
    text-align: right;
    padding-right: 0.8rem;
}
footer section div:last-of-type {
    flex-wrap: wrap;
}
footer section div:last-of-type img {
    padding-right: 0.8rem;
}
footer section div:first-of-type {
    padding-right: 3rem;
}
footer section div p {
    line-height: 1.15em;
    margin-top: -0.2rem;
}
@media only screen and (max-width: 899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    article p {
        text-align: left;
        word-spacing: 0;
    }
    article p span {
        word-spacing: 0;
        display: initial;
    }
    .hide_m {
        display: none;
    }
    p :is(span, a) {
        display: inline-block;
    }
    ul {
        padding: 0 0 0.6rem 0.6rem;
    }
    footer section {
        margin: 0.75rem 0 0 0;
    }
}
@media only screen and (max-width: 780px) {
    #wrapper {
        padding-right: 2rem;
    }
}
@media only screen and (max-width: 685px) {
    footer section {
        flex-direction: column;
        align-items: center;
    }
    footer section div:first-of-type {
        padding: 0 0 1rem;
    }
}
@media only screen and (max-width: 480px) {
    #wrapper {
        padding: 1rem;
    }
    header {
        padding-bottom: 1rem;
    }
    article {
        padding: 0.8rem;
    }
}
@media only screen and (max-width: 350px) {
    footer section div {
        flex-direction: column !important;
        align-items: center !important;
    }
    footer section div p {
        text-align: center !important;
    }
    footer section div:last-of-type p {
        padding: 0.75rem 0;
    }
    footer section div:last-of-type {
        flex-direction: column-reverse !important;
    }
}