﻿@charset "utf-8";

/* Standard */

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

a {
    color: inherit;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

a:hover,
a:active,
a:visited {
    text-decoration: underline;
}

u {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.2;
}

#wrapper {
    position: relative;
    max-width: 46.75rem;
    margin: .625rem auto;
    border: solid thin #000;
    padding: 0 40px;
    background-color: #fff;
    overflow: hidden;
}

p {
    text-align: left;
    margin: 0 0 .625rem;
}

h1 {
    display: block;
    color: #ABACAB;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 1.25rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.437rem;
    margin-top: 1.5em;
    line-height: 1.2;

}

h1 span {
    font-weight: normal;
    font-size: 1rem;
}

h2 {
    display: block;
    margin: 1rem 0;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background: #17375E;
    padding: .625rem .312rem;
}

h3 {
    font-size: 1.231em;
    line-height: 1.4;
    margin: 0 0 0.625rem;
}

hr {
    border-top: 1px solid #52BA5A;
}

ul {
    list-style: none;
    margin: 1rem 0 15px 0;
    padding: 0;
}

ul li {
    padding-left: 20px;
}

ul li:before {
    content: "\2022"
        /* ❖ *  ● ■ ▪ ◆ ❖ ✔ » ▸ ▶ ► ➤ ➢ ➧ ➭ ➽ ➲ 》➠ ◢ ◥ ☛ */
    ;
    float: left;
    margin-left: -.937rem;
    font-size: 1.75rem;
    line-height: 0.7;

}

nav ul li {
    padding-left: 1.062rem;
}

address img {
    display: block;
    width: 100%;
    max-width: 90px;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header {
    margin: 3rem auto .937rem;
    position: relative;
}

header a {
    position: absolute;
    width: 42%;
    height: 29%;
    top: 0;
    left: 0;
    /* border: 1px solid red; */
}

article {
    margin: 0 auto 0.8rem;

    line-height: 1.2rem;
    padding: 4px;
}

article p {
    margin: 0 auto .625rem;
    line-height: 1.2rem;
    padding: 4px;
}


article > p:nth-of-type(2) {
    margin-bottom: .75rem;
}

article > a {
    display: block;
    padding: 15px 6px;
    text-align: center;
    color: #fff;
    background: #053c5f;
    text-decoration: none;
    font-size: 1.3rem;
    line-height: 1.2rem;
    -webkit-transition: all 80ms ease-in-out;
    -moz-transition: all 80ms ease-in-out;
    -ms-transition: all 80ms ease-in-out;
    -o-transition: all 80ms ease-in-out;
    transition: all 80ms ease-in-out;
    font-weight: bold;
    margin-bottom: 1.25rem;
}

article > a:hover {
    text-decoration: underline;
    background: #075486;
}

article section:first-of-type {
    float: left;
    width: 87%
}

article section:nth-of-type(2) {
    float: left;
    width: 11%;
}

article aside {
    background: #17375E;
    color: #fff;
    padding: .937rem .312rem;
    margin: 0 0 .625rem;
}

article > img:last-of-type {
    margin-bottom: 1.25rem;
}

article nav p a {
    background-color: #17375E;
    border: 2px solid #000;
    border-radius: .312rem;
    color: #fff;
    padding: .625rem;
}

article nav p a:hover {
    background: #fff;
    text-decoration: none;
    color: #17375E;
    border: 2px solid #17375E;
}

article > p:nth-of-type(2),
article > p:nth-of-type(3) {
    margin-bottom: .625rem;
    padding-bottom: 0;
}

@media only screen and (max-width:46.687rem) {
    #wrapper {

        margin: 0 auto;
        border: 0;
        padding: 0.625rem;
    }

    a {
        font-weight: bold;
    }

    footer {
        margin: 0 -0.625rem -0.625rem;
        padding: 0.625rem;
    }

    header {
        margin: -0.625rem -0.625rem 0.625rem;
        padding: 0.625rem;
    }

    h1 {
        font-size: 1.125rem;
        margin: .625rem 0;
        line-height: 1.2
    }

    h1 br {
        display: none;
    }

    h2,
    h3 {
        font-size: 1em;
        margin: 0 0 .625rem;
    }

    p,
    ul {
        margin: 0 0 .625rem;
    }

    aside p {
        margin: 0 0 .625rem;
    }

    aside p br {
        display: none;
    }

    article section:first-of-type {
        float: none;
        width: 100%;
    }

    article section:nth-of-type(2) {
        float: none;
        width: 6.25rem;
    }

    article section iframe {
        width: 100%;
    }

    @media only screen and (max-width:29.937rem) {
        h1 {
            font-size: 1.5em;
        }
    }