@charset "utf-8";
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Calibri, Arial, sans-serif;
    font-size: 0.875em;
    line-height: 1.3em;
}
#wrapper {
    position: relative;
    max-width: 760px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0.2rem 0 1.25rem;
    font-size: 1.3em;
    line-height: 1.1em;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0;
    text-transform: uppercase;
}
h1, h2 {
    color: #004152;
}
a {
    color: #000;
    text-decoration: none;
}
u {
    color: #0000FF;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.25rem;
}
ul li:before {
    content: "▪";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    top: 0;
    margin-left: -1.25rem;
}
article {
    padding: 1rem 5.6rem 0;
}
footer {
    padding: 1.5rem 5.6rem;
    background: #004152;
    color: #fff;
    font-size: 1.052em;
}
@media only screen and (max-width:760px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    br {
        display: none;
    }
    p {
        text-align: left;
    }
    article {
        padding: 1rem 1rem 0
    }
    footer {
        padding: 1rem;
    }
}