@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.125em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 615px;
    margin: 1rem auto;
    border: 1px solid #4176B3;
    background: #fff;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: -0.25rem 0 0.125rem;
    font-size: 1.55em;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 400;
}
h1+p {
    padding-bottom: 1.5rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.color {
    color: #0870B9;
}
article {
    padding: 0.5rem 1.5rem 0;
}
footer {
    padding: 1rem;
}
footer p {
    text-align: right;
}
footer p span {
    color: #5D9983;
    font-size: 1.313em;
}
footer p strong {
    font-size: 1.0625em;
    line-height: 1.3;
}
@media only screen and (max-width:614px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        hyphens: auto;
    }
    p :is(a, span) {
        white-space: nowrap;
    }
    article {
        padding: 0.5rem 1rem;
    }
}