@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.5em 'Segoe UI', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #FFF3D1;
    overflow: hidden;
}
h1 {
    margin: 0 -1.125rem 1rem;
    padding: 1.25rem;
    background-color: #F7DFAB;
    text-align: center;
    font-size: 1.75em;
    line-height: 1.2em;
}
h1 span {
    font-size: 0.75em;
    line-height: 1.3;
}
h2 {
    font-size: 1.125em;
    line-height: 1.3;
}
p {
    padding-bottom: 1rem;
    text-align: center;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a.ins {
    text-decoration: underline;
    color: #0000FF;
}
img {
    max-width: 100%;
    vertical-align: middle;
    height: auto;
}
ul {
    padding: 0 0 1rem 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: -2px 0 0 -1rem;
}
article {
    padding: 1rem 1.125rem 0;
}
footer p {
    padding: 1rem 3.125rem;
    background-color: #F7DFAB;
    text-align: left;
}
.color, h2 {
    color: #C48A49;
}
.color {
    font-weight: bold;
}
@media only screen and (max-width:799px) {
    body {
        font-size: 1em;
        line-height: 1.4;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p, ul {
        hyphens: auto;
    }
    ul {
        padding-left: 0;
    }
    p :is(span, a), h1 span {
        display: inline-block;
    }
    br {
        display: none;
    }
    footer p {
        padding: 1rem;
        text-align: center;
    }
    footer em {
        display: block;
    }
}