@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: 970px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 2.5rem 3.5rem;
}
:is(p, li) {
    text-align: justify;
}
p {
    padding-bottom: 1rem;
}
h1, h2, header p {
    color: #0064BC;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.25em;
    line-height: 1.5;
    text-align: center;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
a.underline {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.5rem;
}
ul li:before {
    content: "\2022";
    font-size: 1.25em;
    float: left;
    margin: 1px 0 0 -1.5rem;
}
.nopad {
    padding: 0;
}
span {
    display: inline-block;
}
header {
    padding: 0 0 1rem;
    display: flex;
    justify-content: space-between;
    flex-flow: row-reverse;
}
header p {
    font-size: 0.9em;
    line-height: 1.3em;
}
footer p {
    font-size: 0.8125em;
    line-height: 1.3;
}
.custom {
    color: #0064BC;
}
@media only screen and (max-width:969px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 2rem;
    }
    :is(p, li) {
        text-align: left;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    header {
        padding-bottom: 0;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    header p {
        text-align: center;
    }
    header br, i br {
        display: none;
    } {
        display: none;
    }
    li{
        padding-left: 1rem;
    }
    ul li:before{
        margin-left: -1rem;
    }
}
