@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em "Segoe UI", sans-serif;
}
#wrapper {
    position: relative;
    max-width: 730px;
    margin: 1rem auto;
    border: 1px solid #E68C48;
    background: #fff;
    overflow: hidden;
    padding: 1em 1rem 0;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.ins {
    text-decoration: underline;
}
p {
    padding-bottom: 0.5rem;
    text-align: justify;
    hyphens: auto;
}
h1, h3 {
    font-size: 1.375em;
    line-height: 1.3;
    text-align: center;
}
h1 small {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
h2 + p {
    text-align: left;
    hyphens: unset;
}
h3 {
    text-transform: uppercase;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 1.5rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1rem;
    position: absolute;
    left: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.center {
    text-align: center;
}
header {
    float: left;
    margin: 0 1rem 0.125rem 0;
}
section p {
    padding-bottom: 1rem;
}
p :is(a, span) {
    display: inline-block;
}
.small {
    font-size: 0.875em;
}
h2, strong {
    font-weight: 600;
}
@media only screen and (max-width:729px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
    }
    section {
        width: 100%;
    }
    :is(h1, h2 + p) br {
        display: none;
    }
    header {
        float: none;
        padding: 0 0 1rem;
        display: flex;
        justify-content: center;
    }
}