@charset "utf-8";
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Trebuchet MS', Arial, sans-serif;
    font-size: 1em;
    line-height: 1.75em;
}

#wrapper {
    position: relative;
    max-width: 530px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 3px #D71C1C;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0 0.75rem;
}

p {
    padding-bottom: 0.5rem;
}

h1 {
    margin: 0rem 0rem 1rem;
    font-size: 1.375em;
    line-height: 1.1em;
    color: #D71C1C;
}

h1 span {
    font-size: 0.73em;
    font-weight: normal;
    color: #000;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header {
    padding: 0rem 0rem 0.5rem;
    text-align: right;
}

article {
    padding: 0rem 0rem 0rem;
}

footer {
    padding: 0rem 0rem 0rem;
}

@media only screen and (max-width:529px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
        font-size: 0.875em;
        line-height: 1.5em;
    }
    p {
        text-align: left;
    }
    br {
        display: none;
    }
}