@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 994px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0 0 2rem;
}
p {
    padding-bottom: 1.5rem;
}
h1 {
    margin: 0 0 1.5rem;
    font-size: 2em;
    line-height: 1.1;
    color: #0052A0;
    text-align: center;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 2rem;
    list-style: none;
}
ul li {
    padding-left: 3rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    position: relative;
    float: left;
    margin: 0 0 0 -1.5rem;
}
header {
    padding: 2rem;
    border-top: 2rem solid #0060AC;
    display: flex;
    justify-content: flex-end;
}
article, footer {
    padding: 0 2rem;
}
footer p{
    text-align: center;
    font-size: 0.8em;
    line-height: 1.3;
    margin-top: 2rem;
}
p a.ins {
    color: #0060AC;
    text-decoration: underline;
}
@media only screen and (max-width: 993px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    header {
        justify-content: center;
        padding: 1rem;
    }
}
@media only screen and (max-width: 480px) {
    ul li {
        padding-left: 1.7rem;
    }
    article, footer {
        padding: 0 1rem;
    }
}