@charset "utf-8";
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #2d2d2d;
    font: 0.813em/1.4em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #222;
    background: #fff;
    overflow: hidden;
}
h1 {
    margin: 0 -3rem 1.5rem;
    font-size: 2em;
    line-height: 1.1em;
    text-align: center;
}
:is(h2, h3) {
    font-family: "Trebuchet MS", Arial, sans-serif;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    color: #283583;
    margin-bottom: 1rem;
}
h3 {
    font-size: 1.65em;
    line-height: 1.2em;
    color: #0000cc;
    margin-bottom: 2rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #2d2d2d;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1.5rem 1.1rem;
    list-style: none;
}
li {
    padding: 2px 0 2px 0.8rem;
}
ul li:before {
    content: "●";
    font-size: 0.8em;
    float: left;
    margin: -1px 0 0 -1rem;
}
article {
    padding: 0 2.5rem;
}
article section:nth-of-type(1) {
    padding: 1.5rem 0;
}
article section:nth-of-type(1) p {
    text-align: justify;
    hyphens: auto;
}
article section:nth-of-type(3) {
    padding: 1rem 0 0.625rem;
    display: flex;
    justify-content: flex-end;
}
article section:nth-of-type(3) a {
    display: inline-block;
    width: 13px;
    color: #3c485e;
    text-decoration: none;
    margin-left: 19px;
}
article section:nth-of-type(2) {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
article section:nth-of-type(2) a {
    display: inline-block;
    padding: 0.625rem;
    background: #f4f4f4;
    text-decoration: none;
    font-weight: 700;
    color: #283583;
    border: 1px solid #ddd;
    margin: 1rem 0 0 0.625rem;
}
article>p:last-of-type {
    padding-top: 1rem;
}
footer {
    padding: 1.25rem 3.5rem;
}
footer p {
    text-align: center;
}
footer section {
    display: flex;
    justify-content: center;
}
@media only screen and (max-width: 799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(article, footer) {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }
    article section:nth-of-type(1) p {
        text-align: left;
    }
    p :is(a, span) {
        display: inline-block;
    }
    h1 {
        font-size: 1.692em;
        line-height: 1.2;
        margin: 0 0 1.5rem;
    }
    h3 {
        margin-bottom: 1.5rem;
    }
}
@media only screen and (max-width:479px) {
    :is(article, footer) {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    ul {
        padding-left: 0;
    }
}