@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 0.9375em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 920px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 2rem;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.75em;
    line-height: 1.3;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0.125rem;
}
h2.mgb {
    margin-bottom: 1rem;
}
h1, h2 {
    color: #00763D;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1rem;
}
header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
figure {
    margin: 2rem -2rem;
}
.flex {
    display: flex;
    justify-content: space-around;
    gap: 0 1rem;
    flex-wrap: wrap;
}
.flex p, h1 {
    text-align: center;
}
@media only screen and (max-width:919px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    header {
        align-items: center;
    }
    figure {
        margin: 1rem -1rem;
    }
}