@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #242021;
    font: 400 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 840px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #0060A4;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1 {
    margin: 0 0 2rem;
    font-size: 1.5em;
    line-height: 1.1em;
    font-weight: 800;
    color: #0060A4;
}
h2 {
    font-size: 1.1875em;
    line-height: 1.3em;
    margin-bottom: 0.5rem;
}
article {
    padding: 0.5rem 1rem 0;
    display: flex;
    justify-content: space-between;
}
article div {
    width: 49%;
}
.font {
    font-size: 1.125em;
    line-height: 1.3;
    padding-bottom: 0.5rem;
}
.font.pdb {
    padding-bottom: 2rem;
}
footer {
    position: absolute;
    bottom: 0;
    left: 0;
}
@media only screen and (max-width: 839px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
}
@media only screen and (max-width:780px) {
    article {
        flex-direction: column;
    }
    article div {
        width: auto;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
}