@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Tahoma, sans-serif;
    font-size: 0.875em;
    line-height: 1.3em;
}
#wrapper {
    position: relative;
    max-width: 752px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 0.4rem;
}
h1 {
    margin: -0.25rem 0 0;
    font-size: 2.063em;
    line-height: 1.1em;
    color: #0076B8;
}
h1 span {
    font-size: 0.5em;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0.25rem;
}
a {
    color: #000;
    text-decoration: none;
}
a strong {
    color: #0076B8;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0 1.5rem;
    list-style: none;
}
li {
    padding-left: 1.4rem;
    padding-bottom: 0.25rem;
}
ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1em;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -1.4rem;
}
header a img {
    padding: 1rem 0.75rem 0.25rem;
}
article {
    padding: 1rem 2rem 1.25rem;
}
article aside {
    text-align: center;
    margin-bottom: 0.5rem;
}
article aside + p {
    text-align: justify;
    padding-bottom: 1rem;
}
footer {
    padding: 0 2rem;
    font-size: 0.9em;
    line-height: 1.3em;
}
footer aside {
    margin: 0.5rem -2rem 0;
    position: relative;
}
footer aside img {
    display: block;
}
footer aside a {
    color: #fff;
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
@media only screen and (max-width:751px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 0;
        font-size: 0.938em;
        line-height: 1.3em;
    }
    article aside + p {
        text-align: left;
    }
    article {
        padding: 1rem;
    }
    article p:nth-of-type(8) br, footer br {
        display: none;
    }
    footer {
        padding: 0 1rem;
    }
    footer aside {
        margin: 0.5rem -1rem 0;
    }
}