@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3 Arial, sans-serif;
    text-align: justify;
}
#wrapper {
    position: relative;
    max-width: 845px;
    margin: 1rem auto;
    border-bottom: 3px solid #64B32D;
    background: url('../images/bg.jpg') no-repeat top left, url('../images/bg-y.jpg') repeat-y;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 1rem 0;
    font-size: 1.45em;
    line-height: 1.2;
    color: #64B32D;
}
.center, h1 {
    text-align: center;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
h3 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
    text-transform: uppercase;
    display: inline-block;
    padding: 0.2rem 0.5rem;
    color: #FFF;
    font-weight: normal;
    background: #64B32D;
    position: absolute;
    top: -1rem;
    right: 2rem;
}
:is(a:link, a:visited, a:active) {
    color: #0462C1;
    text-decoration: none;
    white-space: nowrap;
}
a.underline {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0.5rem 1rem;
}
li:before {
    content: "•";
    font-size: 1em;
    float: left;
    margin: 2px 0 0 -1rem;
}
header {
    padding: 0 1rem 0.5rem;
    position: relative;
}
article :is(a:link, a:visited, a:active) {
    color: #000;
    text-decoration: none;
}
footer {
    padding: 1rem 1rem 0;
    background: #D8E7C4;
    margin: 0.5rem -0.813rem 0;
    position: relative;
}
footer p {
    width: 86%;
}
h1+p, footer p {
    font-size: 1.1em;
    line-height: 1.3;
}
footer aside {
    position: absolute;
    bottom: 0.25rem;
    right: 2rem;
}
@media only screen and (max-width: 844px) {
    body {
        text-align: left;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0.9rem;
        background: #FFF;
    }
    span{
        display: inline-block;
    }
    header {
        display: flex;
        justify-content: center;
        padding: 0 0 1rem;
    }
    h1 {
        font-size: 1.5em;
    }
    footer {
        margin-top: 1rem;
    }
    footer p {
        width: auto;
    }
    footer aside {
        position: static;
        display: flex;
        justify-content: center;
    }
    h3 {
        position: static;
        margin-bottom: 1rem;
        text-align: center;
    }
    br{
        display: none;
    }
}
@media only screen and (max-width: 480px) {
    h1 {
        font-size: 1.37em;
    }
}