@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3 'Lato', sans-serif;
}
#wrapper {
    position: relative;
    max-width: 517px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #D4DDEF;
    overflow: hidden;
    padding: 0;
    text-align: left;
}
a {
    color: #000;
    text-decoration: none;
}
p {
    padding-bottom: 0.75rem;
}
p span {
    display: inline-block;
}
h1 {
    margin: 0 0 0.75rem;
    font-size: 1.7em;
    line-height: 1.1;
    text-align: center;
}
h1 span {
    display: block;
    font-size: 0.7em;
    line-height: 1.3;
    margin-top: 0.5rem;
}
h2 {
    font-size: 1em;
    line-height: 1.2;
    margin-bottom: 0rem;
}
ul {
    padding: 0 0 0.75rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "\2022";
    display: block;
    font-size: 0.8em;
    line-height: 1;
    position: relative;
    float: left;
    margin: 4px 0 0 -1rem;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
header {
    padding: 0.5rem 0 0.5rem 5.5rem;
    border-top: 16px solid #0166B3;
}
article {
    padding: 0 0.8rem;
}
article p {
    text-align: justify;
}
footer {
    padding: 0 0.8rem 0.5rem;
    border-bottom: 16px solid #0166B3;
    text-align: center;
}
footer p {
    padding-bottom: 0.25rem;
}
@media only screen and (max-width:517px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .hide_m {
        display: none;
    }
    header {
        padding: 0.5rem 0.8rem;
    }
    article p {
        text-align: left;
    }
}
