@charset "utf-8";
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.4em Arial, "Segoe UI", Calibri, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 800px;
    border: solid 1px #EB003C;
    background: #fff;
    padding: 1.5rem;
}
.banner{
    margin: 1rem -1.5rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0rem 0rem 1rem;
    font-size: 1.592em;
    line-height: 1.1em;
    color: #EB003C;
}
h1 small {
    font-size: 0.7em;
}
h2{
    font-size: 1em;
    line-height: 1.3;
    color: #EB003C;
}
:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
}
a:hover{
    color: #EB003C;
}
ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style: none;
}
li {
    padding: 0 0 0 25px;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -25px;
    color: #EB003C;
}
ul li ul{
    padding-bottom: 0;
}
ul li ul li:before{
    content: "\3007";
    font-size: 0.6em;
}
.logo{
    display: flex;
    justify-content: center;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
    }
    p :is(span, a) {
        display: inline-block;
    }
}