@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: lighter 1.25em/1.3 Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 630px;
    margin: 1rem auto;
    border: solid 3px #08549F;
    background-color: #fff;
    overflow: hidden;
    padding: 1.25rem 0.75rem;
}
p {
    padding-bottom: 0.375rem;
}
h1 {
    margin: 0 -0.75rem 0.5rem;
    padding: 1.125rem 0.75rem;
    background-color: #08549F;
    color: #fff;
    font-size: 1.22em;
    line-height: 1.1em;
    text-align: center;
}
h1 span {
    display: inline-block;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.375rem;
    list-style: none;
}
li {
    padding-left: 0.75rem;
}
ul li:before {
    content: "\2010";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -0.75rem;
}
header {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 0.5rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid #747676;
}
.small {
    font-size: 0.78em;
    line-height: 1.3;
}
.small1 {
    font-size: 0.85em;
    line-height: 1.2;
    font-weight: 400;
}
strong {
    font-weight: 700;
}
.color {
    color: #08549F;
    text-transform: uppercase;
    font-size: 0.73em;
    line-height: 1.3;
}
.color span {
    word-spacing: 5px;
    letter-spacing: 1.5px;
    font-size: 0.97em;
    line-height: 1.3;
    display: inline-block;
    text-transform: initial;
}
.small2 {
    font-size: 0.85em;
    line-height: 1.3;
}
.pb {
    padding-bottom: 1rem;
    width: 82%;
    border-bottom: 1px solid #747676;
}
footer {
    position: absolute;
    right: 1rem;
    bottom: 0.8rem;
}
@media only screen and (max-width: 629px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
    }
    header, footer {
        position: static;
        display: flex;
        justify-content: center;
    }
    .pb {
        width: auto;
        margin-bottom: 1rem;
    }
    .color {
        text-align: center;
    }
}