@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 700px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0 2rem;
}
p {
    padding-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.ins {
    text-decoration: underline;
    color: #0000FF;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 1rem 0 1rem 2rem;
    font-size: 2.5em;
    line-height: 1.1em;
}
h1 span {
    font-size: 0.65em;
    display: block;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    font-weight: normal;
    margin: 0.5rem 0 1rem -1rem;
}
h3 {
    font-size: 1.6em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1rem;
}
header {
    position: absolute;
    top: 0.5rem;
    right: 3rem;
}
@media only screen and (max-width:699px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h1 {
        font-size: 2em;
        margin: 1rem 0 2rem;
    }
    h2 {
        margin: 0.5rem 0 1rem;
    }
    header {
        position: static;
        display: flex;
        justify-content: center;
        padding-bottom: 1rem;
    }
    .hide_m {
        display: none;
    }
}