@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 54.6rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

h1 {
    font-size: 1.2rem;
    color: #0065BD;
}

h2 {
    font-size: 1rem;
    color: #0065BD;
    margin: 0 0 3px
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.blue {
    color: #0065BD;
}

p {
    margin: 0 0 1rem;
    text-align: justify;
}

span {
    white-space: nowrap
}

.nomarg {
    margin: 0 0 3px
}

ul {
    list-style: none;
    margin: 0 0 1rem;
    text-align: justify;
}

ul li {
    padding-left: 1.375rem
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 0.9;
}

header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    color: #0065BD;
    font-size: .875rem;
}

article {
    padding: 0 2rem
}

footer {
    padding: 0 2rem 1rem;
}

@media only screen and (max-width: 54.338rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        text-align: left;
    }
}

@media only screen and (max-width: 700px) {

    header {
        justify-content: center;
        padding: .5rem 0 1.5rem;
    }

    article,
    footer {
        padding: 0
    }
}