@charset "utf-8";
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #231F20;
    font-family: Arial, sans-serif;
    font-size: 1em;
    line-height: 1.3em;
}

#wrapper {
    position: relative;
    max-width: 580px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #4864A4;
    background-color: #fff;
    overflow: hidden;
    padding: 0rem;
    text-align: justify;
}

p {
    padding-bottom: 0.15rem;
}

h1 {
    margin: 0rem 0rem 0rem;
    font-size: 1.6em;
    line-height: 1.1em;
    color: #C24E58;
}

h1 span {
    font-size: 0.7em;
}
h1 + p {
    font-size: 1.188em;
    line-height: 1.3em;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0;
}

a {
    color: #231F20;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

ul {
    padding: 0rem 0rem 0.25rem 0rem;
    list-style-image: url();
    list-style: none;
}

li {
    padding-left: 0.7rem;
}

ul li:before {
    content: "\2010";
    display: inline-block;
    font-size: 1.5em;
    position: relative;
    float: left;
    top: -3px;
    margin-left: -0.7rem;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header {
    padding: 0rem 0rem 0rem;
}

article {
    padding: 0.1rem 1rem 0rem;
}

footer {
    padding: 0rem 1rem 0rem;
}

@media only screen and (max-width:579px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 0;
        font-size: 0.875em;
        line-height: 1.3em;
        text-align: left;
    }
    h1 {
        font-size: 1.375em;
        line-height: 1.3em;
    }
}