@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 0.75rem;
}
p, li {
    text-align: justify;
    hyphens: auto;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.ins {
    color: #0000FF;
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    font-size: 1.2em;
    line-height: 1.3;
    margin: 0 0 0.125rem;
}
h1+p {
    font-size: 1.28em;
    line-height: 1.3;
    margin-right: -1.5rem;
}
h2 {
    font-size: 1.1em;
    line-height: 1.3em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
h2 span {
    text-transform: none;
}
h3 {
    font-size: 1.22em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul.ml {
    margin-left: 2rem;
}
li {
    padding-left: 1rem;
}
.lipdb li {
    padding-bottom: 1rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1rem;
}
main {
    padding: 1rem 2.5rem 1rem;
}
.box {
    padding: 0.625rem 1rem 0.625rem 0;
    display: flex;
    background: #DEEBF7;
    margin-bottom: 2rem;
}
.box div {
    width: 50%;
}
.flex, footer {
    display: flex;
    justify-content: space-between;
}
.flex div {
    width: 49%;
}
.box {
    margin-right: -2.5rem;
}
.box .left {
    background: #fff;
    padding: 1rem 1.5rem 1rem 0.5rem;
}
.box .right {
    padding: 1rem 0 1rem 1rem;
}
.flex .left {
    padding-right: 0.5rem;
}
footer {
    flex-direction: row-reverse;
    border-top: 0.5rem solid #004795;
    padding-top: 1rem;
    align-items: flex-start;
    margin: 2rem -2.5rem 0 0;
}
footer div {
    width: 53%;
}
footer figure {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
footer p:last-of-type {
    font-size: 0.85em;
    line-height: 1.3;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p, li {
        text-align: left;
    }
    ul.ml {
        margin-left: 0;
    }
    p :is(span, a) {
        display: inline-block;
    }
    .hide_m {
        display: none;
    }
    h1 + p, .box, footer {
        margin-right: 0;
    }
}
@media only screen and (max-width:780px) {
    main {
        padding: 1rem 2rem;
    }
    .flex, .box, footer {
        flex-direction: column;
    }
    :is(footer, .flex, .box) div {
        width: auto !important;
        padding: 1rem 1rem 0 !important;
    }
    .box {
        padding: 0 1rem;
        margin: 0 -1rem;
    }
    .left, .right {
        padding: 1rem !important;
        margin: 0 -1rem !important;
    }
    footer {
        margin-top: 1rem;
    }
    footer figure {
        width: 100%;
        justify-content: center;
    }
}
@media only screen and (max-width:480px) {
    main {
        padding: 1rem;
    }
}