@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.125em/1.2 'Times New Roman', Times, serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 3rem 3.125rem;
}
#wrapper::before {
    content: "";
    width: 79.5%;
    height: 1px;
    background-color: #2B3EDC;
    position: absolute;
    top: 9rem;
    right: 3.125rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.523em;
    line-height: 1.2;
}
h1 + p {
    text-align: justify;
}
h2 {
    font-size: 1em;
    line-height: 1.2;
    margin-bottom: 1rem;
}
h1, .center {
    text-align: center;
}
h1, h2 {
    color: #0070C0;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a.ins {
    color: #0000ff;
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 3.75rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 1px 0 0 -1.75rem;
}
header {
    margin: 0 -2rem 1rem;
}
footer p {
    font: 400 0.6em/1.5 Arial, Helvetica, sans-serif;
}
footer {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    header {
        display: flex;
        justify-content: center;
        margin: 0 0 1.5rem;
    }
    #wrapper::before {
        display: none;
    }
    h1 + p {
        text-align: left;
    }
    footer p {
        font-size: 0.75em;
        line-height: 1.3;
        width: 48%;
    }
    footer {
        flex-wrap: wrap;
    }
    p span {
        display: inline-block;
    }
}
@media only screen and (max-width: 780px) {
    #wrapper {
        padding: 2rem;
    }
    li {
        padding-left: 3rem;
    }
    footer p {
        width: 100%;
        text-align: center;
    }
}
@media only screen and (max-width: 480px) {
    body {
        font-size: 1em;
    }
    #wrapper {
        padding: 1rem;
    }
    li {
        padding-left: 1.25rem;
    }
    ul li::before {
        margin-left: -1.25rem;
    }
}