@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 0.875em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 2.5rem 3.5rem;
}
:is(p, li) {
    text-align: justify;
    hyphens: auto;
}
p {
    padding-bottom: 1rem;
}
h1, .center{
    text-align: center;
}
h1 {
    margin: 0;
    font-size: 1.188em;
    line-height: 1.3;
    color: #0064BC;
}
h1+p{
    padding-bottom: 2rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0;
    color: #0064BC;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.5rem;
}
ul li:before {
    content: "\2022";
    font-size: 1.4em;
    float: left;
    margin: 1px 0 0 -1.5rem;
}
.wo {
    word-spacing: 1px;
}
header {
    padding: 0 0 2.5rem;
    display: flex;
    justify-content: space-between;
    flex-flow: row-reverse;
}
header p {
    color: #0064BC;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 2rem;
    }
    p span {
        display: inline-block;
    }
    :is(p, li) {
        text-align: left;
    }
    .wo {
        word-spacing: 0;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    header {
        padding-bottom: 1.5rem;
    }
}