@charset "utf-8";
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 805px;
    border: solid 1px #000;
    background: #fff;
    padding: 5rem;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
h1 {
    margin: 0rem 0rem 0rem;
    font-size: 1.188em;
    line-height: 1.1em;
    text-align: center;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
.center {
    text-align: center;
    font-size: 0.875em;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #0062C1;
    text-decoration: underline;
}
ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style-image: url();
    list-style: none;
}
li {
    padding: 0 0 0 50px;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -23px;
}
header {
    padding: 0 2rem 0.5rem 0;
    display: flex;
    justify-content: end;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:804px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1.5rem;
    }
    p {
        text-align: left;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h1 br {
        display: none;
    }
    header {
        display: flex;
        justify-content: center;
        padding: 0 0 1rem;
    }
}