@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot');
    src: url('../fonts/roboto-condensed-v27-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2'), url('../fonts/roboto-condensed-v27-latin-regular.woff') format('woff'), url('../fonts/roboto-condensed-v27-latin-regular.ttf') format('truetype'), url('../fonts/roboto-condensed-v27-latin-regular.svg#RobotoCondensed') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v27-latin-700.eot');
    src: url('../fonts/roboto-condensed-v27-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v27-latin-700.woff2') format('woff2'), url('../fonts/roboto-condensed-v27-latin-700.woff') format('woff'), url('../fonts/roboto-condensed-v27-latin-700.ttf') format('truetype'), url('../fonts/roboto-condensed-v27-latin-700.svg#RobotoCondensed') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.3em 'Roboto Condensed', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 580px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 1rem;
}
p {
    padding-bottom: 0.75rem;
    text-align: justify;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    font: bold 1.125em/1.3 Arial, sans-serif;
    padding: 0.5rem 1rem;
    margin: 0 -1rem 1rem;
    background: #13467C;
    color: #fff;
}
h1 span {
    text-transform: uppercase;
    font-size: 1.4375em;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    color: #1A5FAC;
    text-transform: uppercase;
}
ul {
    padding: 0 0 0.75rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1rem;
}
header {
    position: relative;
}
header p {
    position: absolute;
    font: 1em/1.3 Arial, sans-serif;
    color: #13467C;
    bottom: 0;
    left: 0;
    padding: 0.5rem 1rem;
}
main {
    padding: 1rem 1rem 0;
    background: #E8EAF4;
}
footer {
    position: absolute;
    bottom: 1.8rem;
    right: 2rem;
}
footer img {
    border: 8px solid #fff;
}
@media only screen and (max-width:579px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    header p {
        position: static;
        background: #E8EAF4;
    }
    img {
        vertical-align: middle;
    }
    main {
        padding: 0 1rem 1rem;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
}