@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.063em/1.5em "Calibri", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 835px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
h1, h3 {
    margin: 0 0 1rem;
    font-size: 1.45em;
    line-height: 1.3em;
    font-style: italic;
}
h1 span {
    font-weight: normal;
    font-size: 0.7em;
    display: block;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: #000;
    text-decoration: none;
}
p a.ins{
    color: #0000FF;
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
    font-weight: bold;
}
li {
    padding-left: 3.2rem;
}
ul li:before {
    content: "•";
    float: left;
    margin-left: -1.6rem;
}
header {
    padding: 4rem 2.8rem;
    display: flex;
    justify-content: flex-end;
}
article {
    padding: 0 5rem 1rem;
}
footer {
    padding: 0 5rem 2rem;
}
article p {
    text-align: justify;
    hyphens: auto;
}
@media only screen and (max-width:834px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    span {
        display: inline-block;
    }
    header {
        justify-content: center;
    }
    article p, h1 {
        text-align: left;
    }
}
@media only screen and (max-width:780px) {
    header {
        padding: 1.5rem 2rem;
    }
    article, footer {
        padding: 0 2rem;
    }
}
@media only screen and (max-width: 480px) {
    header {
        padding: 1.5rem 1rem;
    }
    article, footer {
        padding: 0 1rem;
    }
    li {
        padding-left: 1.6rem;
    }
}