@charset "utf-8";
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 300;
    src: url('../fonts/roboto-v30-latin-300italic.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-300italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-300italic.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-300italic.woff') format('woff'),
        url('../fonts/roboto-v30-latin-300italic.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-300italic.svg#Roboto') format('svg');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-v30-latin-300.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-300.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-300.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-300.woff') format('woff'),
        url('../fonts/roboto-v30-latin-300.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-300.svg#Roboto') format('svg');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/roboto-v30-latin-500.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-500.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-500.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-500.woff') format('woff'),
        url('../fonts/roboto-v30-latin-500.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-500.svg#Roboto') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-condensed-v27-latin-300.eot');
    src: url('../fonts/roboto-condensed-v27-latin-300.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v27-latin-300.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v27-latin-300.woff') format('woff'),
        url('../fonts/roboto-condensed-v27-latin-300.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v27-latin-300.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: #000;
    font: 300 1.125em/1.3em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 520px;
    margin: 1rem auto;
    border: 1px solid #BBBDC0;
    background: #fff;
    overflow: hidden;
}
:is(h2, strong) {
    font-weight: 500;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.color {
    color: #0D67B3;
}
a.red {
    color: #C01D79;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 1.85em;
    line-height: 1.1;
    font-weight: 700;
    color: #0D67B3;
}
h1 span {
    font-weight: 300;
}
h1 small {
    font-weight: 500;
    font-size: 0.7em;
    font-family: 'Roboto', Arial, sans-serif;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    color: #C01D79;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 1.5rem;
    position: relative;
}
li:before {
    content: ">";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.hl {
    color: #0D67B3;
    font-weight: 500;
}
article {
    padding: 1rem 1rem 0;
}
footer {
    margin-top: -2.5rem;
    padding: 0 1rem;
    display: flex;
    justify-content: flex-end;
}
footer p {
    text-align: right;
    font-size: 0.875em;
    line-height: 1.3;
    margin-top: 3.25rem;
}
figure {
    margin: 0;
}
@media only screen and (max-width:519px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    h1 {
        font-size: 1.6em;
    }
    article br {
        display: none;
    }
    footer {
        margin-top: 0;
        flex-direction: column;
        align-items: center;
    }
    footer p {
        margin-top: 0;
    }
}