@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 842px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #1F487C;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 1.25rem;
}
p {
    padding-bottom: 1rem;
}
p, li {
    text-align: justify;
}
h1 {
    margin: 0.25rem 0 1.25rem;
    font-size: 1.75em;
    line-height: 1.1;
    text-align: center;
}
h1 span {
    font-size: 0.6em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
h1, h2 {
    color: #1C497C;
}
a {
    color: #000;
    text-decoration: none;
}
a.underline {
    text-decoration: underline;
    color: #00f;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.625rem;
}
li:before {
    content: "•";
    float: left;
    margin-top: -1px;
    margin-left: -1.625rem;
}
header {
    position: relative;
}
header img {
    display: block;
}
header a:first-of-type {
    position: absolute;
    top: 9%;
    left: 42%;
    width: 20%;
    height: 23%;
}
header a:nth-of-type(2) {
    position: absolute;
    top: 9%;
    left: 66%;
    width: 28%;
    height: 23%;
}
main {
    padding: 0.5rem 0.5em 0;
}
.flex div {
    width: 83%;
}
.flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.flex > img {
    margin: 2rem 0 1.5rem;
}
.small {
    font-size: 0.81em;
    line-height: 1.3;
}
hr {
    border: 0;
    border-bottom: 2px dashed #1C497C;
    margin: 0 0 0.75rem;
}
footer {
    background-color: #D9D9D9;
    border: 1px solid #000;
    padding: 0.5rem 0.5rem 0.25rem;
}
footer p span {
    display: inline-block;
}
footer p {
    font-size: 0.95em;
    line-height: 1.3;
    padding-bottom: 0.25rem;
}
.width2 {
    width: 255px;
}
.width {
    width: 140px;
}
.flex1 div p {
    display: flex;
    gap: 0 3.25rem;
}
.flex1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.flex1 div p span {
    position: relative;
}
.flex1 div p span::before {
    content: "";
    width: 1px;
    height: 150%;
    background-color: #000;
    position: absolute;
    top: -0.5rem;
    left: -0.625rem;
}
footer > p span {
    padding: 0 0.25rem;
}
@media only screen and (max-width: 841px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    p, li {
        text-align: left;
    }
    .flex {
        flex-direction: column;
        align-items: center;
    }
    .flex > img {
        margin: 0 0 1rem;
    }
    .flex div {
        width: 100%;
    }
    .flex1 {
        display: block;
    }
}
@media only screen and (max-width: 690px) {
    .flex1 div p span::before {
        display: none;
    }
    .flex1 div p {
        flex-direction: column;
    }
    footer p {
        text-align: center;
    }
    .flex1 div p span {
        width: auto !important;
    }
}