@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 Verdana, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    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: 1rem 0 2rem;
    font-size: 1.4375em;
    line-height: 2;
    padding: 0.5rem 1rem;
    background: #00999A;
    color: #fff;
    text-align: center;
}
h1 span {
    display: block;
    font-weight: normal;
    font-size: 1.125rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
h3 {
    font-size: 1.5em;
    line-height: 1.3em;
    color: #00305D;
    font-weight: normal;
    flex: 1;
    text-align: center;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 3rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1.5rem;
}
header {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    margin-bottom: 2rem;
}
footer {
    padding: 0.5rem 0.75rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
    background: #00999A;
    margin-top: 1.5rem;
}
footer p {
    padding: 0;
    width: 50%;
    font-size: 0.9375em;
    color: #fff;
    line-height: 1.3;
}
@media only screen and (max-width:929px) {
    #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;
    }
    article br {
        display: none;
    }
}
@media only screen and (max-width:780px) {
    footer {
        gap: 1rem;
    }
    footer p {
        width: fit-content;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    h1 {
        font-size: 1.375em;
        line-height: 1.3;
    }
    li {
        padding-left: 1rem;
    }
    li:before {
        margin-left: -1rem;
    }
    header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}