@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 0.875em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: 2px solid #004B99;
    background: #fff;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.link {
    color: #0000FF;
    text-decoration: underline;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.65em;
    line-height: 1.1;
    color: #004B99;
}
h1+p strong {
    font-size: 1.063em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
h3 {
    font-size: 1.95em;
    line-height: 1.2;
    margin-bottom: 1rem;
}
h4 {
    font-size: 1.6em;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #004B99;
    text-align: center;
}
ul {
    padding: 0 0 1rem 1.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 1.5rem;
    position: relative;
}
.pdl {
    padding-left: 1.5rem;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.big {
    font-size: 1.125em;
    line-height: 1.3;
}
.bg {
    background: #004B99;
    margin: 0 -1rem 1rem;
    padding: 1rem 1rem 0;
}
.bg :is(p, h3) {
    color: #fff;
}
.bg p {
    font-size: 1.25em;
    line-height: 1.3;
}
.hl {
    font-weight: 700;
    color: #004B99;
}
.text {
    color: #004B99;
    font-size: 0.938em;
    line-height: 1.3;
}
.flex {
    display: flex;
    justify-content: space-between;
    flex-flow: row-reverse;
    gap: 0 2rem;
    position: relative;
}
.flex:before {
    content: '';
    position: absolute;
    top: 0;
    left: 28%;
    width: 1px;
    height: 100%;
    background: #004B99;
}
.left :is(p, li) {
    text-align: justify;
    hyphens: auto;
}
.left {
    width: 70%;
}
.right {
    flex: 1;
}
.right p {
    text-align: right;
}
.img {
    display: flex;
    justify-content: center;
    margin: 1rem auto 1.5rem;
}
article {
    padding: 0 1rem 0.5rem;
}
footer {
    padding: 1rem;
    background: #004B99;
}
footer p {
    padding: 0;
    color: #fff;
    text-align: center;
    font-size: 1.313em;
    line-height: 1.3;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .left :is(p, li), p {
        text-align: left;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    .hide_m {
        display: none;
    }
}
@media only screen and (max-width:768px) {
    .flex {
        flex-direction: column;
    }
    .flex:before {
        display: none;
    }
    .left {
        width: 100%;
    }
    .right p {
        text-align: center;
    }
}
@media only screen and (max-width:480px) {
    h3 {
        font-size: 1.75em;
    }
    ul {
        padding-left: 0;
    }
    li, .pdl {
        padding-left: 1rem;
    }
}