:root {
    font-size: 16px;
}

* {
    margin: 0px;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

#wrapper {
    margin: 12px auto;
    border: 1px #231F20 solid;
    max-width: 805px;
    color: #231F20;
    position: relative;
    padding: 3.125rem 6.25rem;
    background-color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.125rem;
    font-size: 0.8125rem;
    text-align: left;
    overflow: hidden;
}

p {
    padding-bottom: 1.375rem;
}

h1 {
    margin: 0 0 0.9375rem;
    font-size: 1rem;
    line-height: 1.625rem;
    color: #003865;
}

h1 span {
    display: block;
}

h2 {
    font-size: 0.8125rem;
    line-height: 1.125rem;
    margin: 0 0 0.625rem;
    color: #FF0000;
}

h3 {
    color: #003865;
    font-size: 0.8125rem;
    line-height: 1.25rem;
    margin: 0 0 0.1875rem;
}

a {
    color: blue;
    text-decoration: underline;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    width: auto;
    border: none;
}

ul {
    margin: 0 0 1.375rem;
    padding:0;
    list-style: none;
}

ul li {
    padding-left: 1.5rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: 0;
    font-size: 1.1875rem;
    text-indent: -1.5rem;
    position: relative;
    font-family: Arial, sans-serif;
    top: 2px;
}

.clear:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}


header {
    width: 100%;
    float: left;
}


article {
    width: 100%;
    float: left;
}

article p:nth-of-type(2) {
    color: #003865;
    font-weight: bold;
    line-height: 1.375rem;
}

article p:nth-of-type(2) span {
    font-size: 121%;

}

footer {
    width: 100%;
    float: left;
    margin-top: 3.25rem;
}

footer a img {
    position: absolute;
    bottom: 4.125rem;
    right: 5.8125rem;
}


article>ul:last-of-type {
    margin-bottom: 0.625rem;
}

@media only screen and (max-width:804px) {
    #wrapper {
        border: none;
        padding: 3%;
    }

    footer a img {
        position: static;
        bottom: 0;
        right: 0;
    }

    footer {
        margin-top: 1rem;
    }

    header {
        text-align: center;
    }

    footer span {
        white-space: nowrap;
    }
}