@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875em;
    line-height: 1.431em;
    background-image: url(../images/bg.png);
    background-repeat: repeat-x;
    background-color: #FFFBF3;
}

#wrapper {
    position: relative;
    max-width: 740px;
    margin: 1rem auto;
    border: none;
    padding: 0.5rem 0rem;
    overflow: hidden;
}

header,
article,
footer {
    padding: 0rem 1.188rem;
}

p {
    text-align: left;
}

h2 + p,
h2 + ul {
    margin-top: 0.308rem;
}

h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.992em;
    line-height: 1.2;
    color: #D92727;
}

h1 span {
    font-size: 0.731em;
}

h2 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.231em;
    line-height: 1.231em;
    margin-bottom: 0;
}

a:link,
a:active,
a:visited {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a.link:link,
a.link:visited {
    text-decoration: none;
    color: #FFF;
    background-color: #D82828;
    padding: 0.7rem 1rem;
    border: 2px solid #DA2828;
    margin: 2rem 0;
}

a.link:hover {
    text-decoration: none;
    color: #D82828;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    padding-left: 1rem;
    margin-left: 1rem;
}

li {
    padding-bottom: 0.2rem;
    list-style-type: none;
}

li:before {
    content: "\25A0";
    color: #D92727;
    float: left;
    margin-left: -20px;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

.gro {
    margin: 2rem 0;
}

footer section {
    display: inline-block;
    width: 49%;
    vertical-align: top;
}

@media only screen and (max-width:46.187rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0;
    }

    body {
        background-image: none;
    }

    header {
        background-color: #fff;
    }

    header,
    article,
    footer {
        padding: 1rem;
    }

    footer section {
        display: inline-block;
        width: 100%;
        vertical-align: top;
    }
}