@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1.063em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 570px;
    margin: 1rem auto;
    border: 2px solid #1667A8;
    background: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1.25rem;
}
h1 {
    margin: 0 0 1.25rem;
    font-size: 1.3em;
    line-height: 1.2;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    padding: 0 0 0.5rem;
    display: flex;
    justify-content: flex-end;
}
@media only screen and (max-width:569px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    br:not(.block br) {
        display: none;
    }
}