@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.25em/1.3em 'Arial Narrow', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 558px;
    margin: 1rem auto;
    border: solid 2px #00763D;
    background-color: #fff;
    overflow: hidden;
    padding: 1.25rem 1rem 0;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 0.75rem;
    font-size: 1.75em;
    line-height: 1.1em;
}
h1 span {
    font-size: 0.62em;
    line-height: 1.3;
    display: block;
}
h2 {
    font-size: 1.313em;
    line-height: 1.3em;
    margin-bottom: 0.75rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
h1, h2, .color, a.color {
    color: #00763D;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    position: absolute;
    top: 1.75rem;
    right: 1.5rem;
}
article > p {
    padding-bottom: 1rem;
}
.width {
    width: 72%;
}
footer {
    position: absolute;
    bottom: 0;
    right: 1.5rem;
}
@media only screen and (max-width: 557px) {
    body {
        font-size: 1.125em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        padding-bottom: 1rem;
    }
    header, footer {
        position: static;
        display: flex;
        justify-content: center;
    }
    .hide_m {
        display: none;
    }
    .width {
        width: auto;
    }
    header {
        padding-bottom: 0.5rem;
    }
    footer {
        padding-top: 0.5rem;
    }
}