@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.938em;
    line-height: 1.3em;
}
#wrapper {
    position: relative;
    max-width: 605px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 1rem;
}
a {
    color: #0000FF;
    text-decoration: underline;
}
article p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0rem 0rem 1rem;
    font-size: 1.33em;
    line-height: 1.3em;
    text-align: center;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0.5rem;
}
ul {
    padding: 0rem 0rem 1rem;
    list-style: none;
}
li {
    padding-left: 1.25rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1.4em;
    font-family: Helvetica, sans-serif;
    position: relative;
    float: left;
    top: 1px;
    margin-left: -1.25rem;
}
article > p:last-of-type {
    text-align: justify;
}
header {
    padding: 0 0 1.25rem;
}
header img {
    width: 340px;
}
article {
    padding: 0rem;
}
footer {
    padding: 0rem;
}
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}
a:hover {
    text-decoration: underline;
}
i {
    font-style: normal;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}
p span{
   display: inline-block;
}
/* Responsive */
@media only screen and (max-width:604px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    article > p:last-of-type {
        text-align: left;
    }
    br {
        display: none;
    }
    li {
        padding-left: 1.25rem;
    }
    p, li {
        text-align: left;
    }
    span {
        display: inline-block;
    }
}