@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.3em Tahoma, Verdana, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 900px;
    border: solid 3px #269580;
    background: #fff;
    padding: 1rem 1rem 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem 1rem;
    font-size: 1em;
    line-height: 1.1em;
}
h1:before {
    content: "\25a0";
    font-size: 0.7em;
    margin: 0 0 0 -16px;
    float: left;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
header {
    display: flex;
    justify-content: space-between;
    margin-bottom: -6rem;
    flex-wrap: wrap;
}
.banner {
    margin: -1rem -1rem 0;
}
.location {
    position: absolute;
    left: 22rem;
    top: 2rem;
}
footer {
    position: absolute;
    right: 0.7rem;
    bottom: 0.7rem;
}
footer a {
    padding-right: 1rem;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    .hide_m,h1 br {
        display: none;
    }
    footer {
        position: static;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0;
    }
    header {
        margin: 0;
    }
    .location {
        position: static;
        text-align: center;
    }
}
@media only screen and (max-width:570px) {
    header {
        flex-direction: column;
        align-items: center;
    }
    header p {
        text-align: center;
        padding: 1rem 0;
    }
    .banner {
        margin: 1rem 0;
    }
}
@media only screen and (max-width:475px) {
    footer {
        flex-direction: column;
        align-items: center;
    }
}