﻿@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 {}

u {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

address {
    font-style: normal;
}

body {
    color: #000;
    font-family: 'Arial', sans-serif;
    font-size: 0.813rem;
    line-height: 1.4;
}

p {
    margin: 0 0 .625rem;
}

h1 {
    font-size: 1rem;
    line-height: 1.3;
    margin: 1.937rem 0;
}

h2 {
    font-size: .937rem;
    margin: 0 0 .625rem;
}

h3 {
    font-size: .875rem;
    margin: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0 0 .937rem;
}

ul li {
    padding-left: 1.25rem
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: .312rem;
    height: .312rem;
    background: #000;
    margin-left: -1.25rem;
    top: .375rem;
}


.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

#wrapper {
    position: relative;
    max-width: 770px;
    margin: 1rem auto;
    border: solid thin #ccc;
    background-color: #fff;
    box-shadow: 0 0 25px #ddd;
}

header {
    position: relative;
}

header a {
    position: absolute;
    right: 0;
    top: 0;
    height: 40%;
    width: 26%;
}

article {
    padding: 0 5.625rem;
}

article p a {
    color: blue;
    text-decoration: underline;
}

p span {
    display: inline-block;
    width: 6.25rem;
}

footer {
    padding: 1.687rem 0 1.875rem;
    font-size: .937rem;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background: url(../images/footer.png) no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: -1.25rem;
}

footer p {
    margin: 0;
}

@media only screen and (max-width:769px) {
    #wrapper {
        margin: 0 auto;
        border: 0;
    }

    p a {
        font-weight: bold;
    }

    p,
    ul {
        margin-bottom: .625rem;
    }

    article {
        padding: 0 .625rem;
    }

    article > br {
        display: none
    }

    footer {
        background-size: 110% 200%;
        background-position: center;
        padding: .625rem;
    }

    p span {
        width: auto;
        margin-right: .625rem;
    }
}

@media only screen and (max-width:479px) {}