@charset "utf-8";
: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: 1em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 798px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 0 #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 1rem 0 2rem;
    font-size: 1.75em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
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: 2.6rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 0.9em;
    position: relative;
    float: left;
    margin-top: 0px;
    margin-left: -2.6rem;
}
article {
    padding: 2rem 4rem 0;
}
footer {
    padding: 0 4rem 2rem;
}
@media only screen and (max-width:797px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    p {
        text-align: left;
    }
    article {
        padding: 1rem 1rem 0;
    }
    footer {
        padding: 0 1rem;
    }
}