﻿* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    min-height: 100%;
}

img {
    max-width: 100%;
    height: auto;
    border: none;
}

#wrapper {
    position: relative;
    max-width: 750px;
    margin: 12px auto;
    border: 1px solid #000;
    padding: 0px;
    overflow: hidden;
    text-align: left;
    font-size: 14px;
    line-height: 18px;
    color: #231f20;
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #fff;
}

header {
    position: relative;
}

header a {
    position: absolute;
    width: 24%;
    height: 37%;
    top: 0%;
    left: 5%;
}

article {
    padding: 25px 40px 0px 40px;
}

footer {
    padding: 46px 40px 0px 40px;
    display: flex;
    justify-content: space-between;
    border-bottom: 10px solid #71BF44;
}

p {
    margin: 0px 0px 16px;
    padding: 0px;
}

h1 {
    margin: -5px 0px 16px 0px;
    font-size: 30px;
    line-height: 32px;
    color: #042E6F;
    text-align: left;
}

h1 span {
    display: block;
    color: #71BF44;
}

h2 {
    font-size: 14px;
    margin: 8px 0px;
    line-height: 18px;
}

a {
    color: #231f20;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    margin: -4px 0px 16px 0px;
    padding: 0;
    list-style: none;
}

ul li {
    padding-left: 12px;
}

li:before {
    content: "\2022";
    color: #231f20;
    float: left;
    margin-left: 0px;
    font-size: 16px;
    margin-top: 1px;
    font-family: Arial, sans-serif;
    text-indent: -12px;
}

.clear {
    clear: both;
    margin: 0px;
    display: block;
    padding: 0px;
}

.top {
    font-style: italic;
    padding-right: 15px;
}

footer p {
    width: 50%;
}

footer span {
    white-space: nowrap;
}

@media all and (max-width:749px) {
    #wrapper {
        width: 100%;
        min-width: 200px !important;
        padding: 0px;
        border: none;
    }

    article {
        padding: 3% 3% 0%;
    }

    footer {
        padding: 3%;
    }

    br {
        display: none;
    }

    footer br {
        display: inline;
    }

    .top {
        text-align: left;
        padding-right: 0
    }
}

@media all and (max-width:525px) {
    footer {
        display: block;
    }

    footer p {
        width: 100%;
    }
}