@charset "utf-8";
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.3em Calibri, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 756px;
    border: solid 1px #000;
    background: #fff;
    padding: 1.5rem 4rem;
}
p {
    padding-bottom: 1rem;
}
p, li {
    text-align: justify;
}
hr {
    margin: 1rem -4rem;
    border: none;
    border-bottom: 2px solid #5B2874;
}
.center {
    text-align: center;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1em;
    line-height: 1.3;
    text-align: center;
}
h1 + p {
    padding-bottom: 2rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
h3 {
    text-align: center;
    font-size: 1.188em;
    line-height: 1.3;
    padding: 2rem 0 1rem;
}
h3, .blue, li:before, p a.link {
    color: #009DE1;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 3rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -1.5rem;
}
article {
    padding: 0 0 2rem;
}
footer p {
    text-align: right;
    font-family: Arial, sans-serif;
    font-size: 1.125em;
    position: relative;
}
footer p:before {
    position: absolute;
    left: -63px;
    top: 10px;
    content: "";
    background: #009DE1;
    width: 82%;
    height: 2px;
}
footer p:after {
    position: absolute;
    right: -64px;
    top: 10px;
    content: "";
    background: #009DE1;
    width: 9%;
    height: 2px;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width: 755px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p, li {
        text-align: left;
    }
    p :is(span, a) {
        display: inline-block;
    }
    li {
        padding-left: 20px;
    }
    footer p:after, footer p:before, h1 br {
        display: none;
    }
    footer p {
        text-align: center;
    }
}