@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 0.875em/1.3 Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 915px;
    border: solid 3px #005AB4;
    background: #fff;
    padding: 1.5rem 0.7rem 0.75rem;
}
:is(p, li) {
    text-align: justify;
    hyphens: auto;
}
p {
    padding-bottom: 0.5rem;
}
p span {
    display: inline-block;
}
h1 {
    margin: 0 0 0.75rem;
    font-size: 1.75em;
    line-height: 1.3;
    text-align: center;
    color: #0070C0;
}
h1 span {
    display: block;
    font-size: 0.9em;
}
h2 {
    font-size: 1em;
    line-height: 1.2;
    padding-bottom: 0.35rem;
    color: #006FC0;
}
h3 {
    font-size: 1em;
    line-height: 1.2;
    padding-bottom: 0.35rem;
    font-style: italic;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.25rem;
    list-style: none;
}
.pb {
    padding-bottom: 0;
}
li {
    padding: 0 0 0.15rem 2em;
}
li:before {
    content: "\2022";
    font-size: 1.3em;
    float: left;
    margin: -4px 0 0 -1.7rem;
}
li li {
    padding-left: 2.25rem;
}
li li::before {
    content: "\25CB";
    font-size: 0.7em;
    margin: 3px 0 0 -2rem;
}
header {
    padding: 0 0 0.25rem;
    display: flex;
    justify-content: center;
}
footer small {
    font-size: 0.680em;
    vertical-align: 1px;
}
footer p {
    text-align: center;
    font-size: 1.125em;
    color: #1F487C;
}
footer span {
    display: block;
    font-size: 1.313em;
    padding-top: 0.2rem;
    line-height: 1;
}
footer a {
    font-size: 1.8em;
    line-height: 1;
}
@media only screen and (max-width: 914px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        text-align: left;
    }
    span {
        display: inline-block;
    }
    br {
        display: none;
    }
    li li {
        padding-left: 2rem;
    }
}
@media only screen and (max-width:480px) {
    li, li li {
        padding-left: 1.25rem;
    }
    li:before, li li::before {
        margin-left: -1.25rem;
    }
}