@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #404040;
    font: 1em/1.25em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 675px;
    margin: 1rem auto;
    border: solid 2px #2E425F;
    background: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 0.75rem;
    text-align: justify;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #042850;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
h1 {
    margin: 0;
    font-size: 2em;
    line-height: 1.2em;
    color: #2E425F;
    font-weight: normal;
    width: 645px;
    max-width: 100%;
    padding: 1.5rem 0.75rem;
    background: #E3E1CF;
}
h2 {
    font-size: 1.125em;
    line-height: 1.3em;
    margin-bottom: 0.75rem;
}
h3 {
    font-size: 1em;
    line-height: 1.3em;
    text-transform: uppercase;
    margin: 0.5rem 0;
}
.hl {
    font-size: 1.25em;
}
h4 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 1rem;
    color: #2E425F;
}
h5 {
    font-size: 1.17em;
    line-height: 1.3em;
}
h1, h2, h3, h4, article section p strong {
    font-family: Cambria, Time, "Time New Roman", serif;
}
h2, h3, article section p strong {
    color: #A19E67;
}
header section {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 0.5rem 0 0.5rem 0.75rem;
}
.logo {
    width: 236px;
}
.title {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
article {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
}
article section {
    width: 427px;
    padding: 0 0.75rem;
}
article section p:first-of-type {
    padding-right: 0.5rem;
}
article .bg {
    width: 236px;
    padding: 1rem 0.75rem;
    background: #FCFAD8;
}
article p span {
    color: #000;
}
:is(article .bg, footer) p {
    color: #042850;
    text-align: left;
}
footer {
    position: absolute;
    bottom: 0;
    right: 2rem;
}
@media only screen and (max-width:674px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        text-align: left;
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    .hide_m, h1 br {
        display: none;
    }
    h1, h3 {
        text-align: center;
    }
    header section, .title {
        flex-direction: column;
        align-items: center;
    }
    article {
        flex-direction: column;
    }
    article section, article .bg {
        width: auto;
    }
    footer {
        position: static;
        width: auto;
        background: #FCFAD8;
        padding: 0.75rem;
    }
}