@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #545662;
    font: 400 1em/1.1em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2em;
    line-height: 1.1em;
    color: #0086C8;
    text-transform: uppercase;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
}
h3 {
    font-size: 2em;
    line-height: 1.3em;
    text-transform: uppercase;
    font-weight: normal;
    margin-top: -0.4375rem;
}
h4 {
    font-size: 1em;
    line-height: 1.3em;
    text-transform: uppercase;
    color: #0086C8;
}
ul {
    padding: 0 0 0.75rem;
    list-style: none;
}
li {
    padding-left: 0.625rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -0.625rem;
}
header figure {
    margin-bottom: 1rem;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.flex div {
    width: calc(50% - 0.5rem);
}
.flex figure {
    float: left;
    margin-right: 1rem;
}
article {
    flex: 1;
}
footer {
    position: absolute;
    bottom: 0;
    right: 1rem;
    width: 282px;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    header {
        margin-bottom: 1rem;
    }
    .pdb {
        padding: 0;
    }
    footer {
        position: static;
        width: 100%;
    }
    .hide_m {
        display: none;
    }
}
@media only screen and (max-width:780px) {
    .flex {
        flex-direction: column;
    }
    .flex div {
        width: auto;
    }
    .flex figure {
        float: none;
        display: flex;
        justify-content: center;
        padding-bottom: 1rem;
    }
}
@media only screen and (max-width:4480px) {
    body {
        font-size: 1em;
        line-height: 1.3;
    }
}