@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 0.938em/1.25 Arial, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    max-width: 915px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 3.5rem 5rem 2.5rem;
}
p,
ul {
    padding-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}
h1 {
    margin: 0;
    font-size: 1.2em;
    line-height: 1.3;
    color: #0065BD;
}
h1, h1+p {
    text-align: center;
}
h1+p {
    padding-bottom: 1.5rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    color: #0065BD;
}
h3 {
    font-size: 1em;
    line-height: 1.3;
    text-decoration: underline;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.ins {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.4rem;
}
li:before {
    content: "•";
    font-size: 1.5em;
    float: left;
    margin: -1px 0 0 -1.4rem;
}
header {
    padding: 0 0 1.5rem;
    display: flex;
    justify-content: end;
}
footer p{
    line-height: 1.3;
}
@media only screen and (max-width: 914px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 3rem;
    }
    p,
    ul {
        text-align: left;
    }
    span {
        display: inline-block;
    }
    h1 br {
        display: none;
    }
}
@media only screen and (max-width:780px) {
    #wrapper {
        padding: 2rem;
    }
    header {
        justify-content: center;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
}