@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3 Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 0.25rem;
}
h1 {
    margin: 0;
    font-size: 1.625em;
    line-height: 1.2;
}
h1 span {
    display: inline-block;
}
h2 {
    font-size: 1.125em;
    line-height: 1.3em;
    margin: 0 0 0.25rem;
}
h3 {
    font-size: 1.75em;
    line-height: 1.2;
}
h4 {
    font-size: 1.2em;
    line-height: 1.3;
}
h5 {
    font-size: 1em;
    line-height: 1.3;
    margin: 0.625rem 0 0.75rem;
}
h2, h4 {
    color: #001F5F;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a.ins {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 2.8rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -1.25rem;
}
header {
    padding: 1.75rem 1.5rem 0.75rem;
    background: url('../images/bg.jpg') repeat-x top left;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
article {
    padding: 0.5rem 1.75rem;
}
.title {
    margin: 0.25rem -1.75rem 0.75rem;
    padding: 0.375rem 1.75rem 0.25rem;
    background-color: #001F5F;
}
.title :is(p, h1), footer p, h3 {
    color: #fff;
}
.title p {
    font-size: 0.91em;
    line-height: 1.25;
}
.small {
    font-size: 0.79em;
    line-height: 1.45;
}
footer {
    padding: 0.625rem 1.75rem;
    background-color: #001F5F;
    display: flex;
    align-items: center;
    gap: 1rem;
}
footer p {
    font-family: Calibri, Arial, sans-serif;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    header {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-size: auto 100%;
        gap: 1rem;
    }
    h3, footer p {
        text-align: center;
    }
    span {
        display: inline-block;
    }
    footer {
        display: block;
    }
    footer p {
        text-align: center;
    }
}
@media only screen and (max-width: 480px) {
    article{
        padding: 0.5rem 1rem;
    }
    h1 {
        font-size: 1.5em;
    }
    li {
        padding-left: 1.5rem;
    }
}