﻿@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: Helvetica, Arial, sans-serif;
    font-size: .875rem;
    line-height: 1.4;
}

#wrapper {
    position: relative;
    max-width: 47.5rem;
    margin: 1rem auto;
    border: solid thin #000;
    padding:2.5rem 5rem;
    background-color: #fff;
    overflow: hidden;
}

p {
    margin: 0 0 .937rem;
}

h1 {
    text-align: left;
    font-size: 1.312rem;
    line-height: 1;
    margin: .937rem 0 .937rem 2.625rem;
    color: #365F91;
    font-weight: normal;
}

h1 span{
   color: #000;
    font-size: .875rem;
}

h1:nth-of-type(2){
    margin-bottom: 3.75rem;
}

h2 {
    font-size: 1.25rem;
    line-height: 1;
    margin: 0 0 .187rem;
    color: #365F91;
    font-weight: normal;
}

h3 {
    font-size: 2rem;
    line-height: 1;
    margin: 0 0 1.562rem;
    color: #C0C0C0;
}

ul {
    list-style: none;
    margin: 0 0 .937rem 1.25rem;
    padding: 0;
}

ul li {
    padding-left: 1.375rem;
    font-weight: bold;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.25rem;
    line-height: 0.9;
}
ol{
   list-style: none;
    margin: 0 0 1.25rem 1.25rem;
    padding: 0; 
}

ol li{
    padding-left: 1.375rem; 
}
ol li:before{
        content: "";
        float: left;
        position: relative;
        width: .312rem;
        height: .062rem;
        border-radius: .5rem;
        background: #000;
        margin-left:-1.375rem;
        top: .562rem;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
}

header{
    margin: 0 -5rem 1.562rem;
    position: relative;
}

header a{
    position: absolute;
    top: 0;
    right: 19%;
    width: 13%;
    height: 97%;
}

@media only screen and (max-width:47.437rem) {
    #wrapper {
        margin: 0 auto;
        border: 0;
        padding: 0.625rem .625rem 0;
    }
    
    header{
        margin: 0 -.625rem .625rem;
    }
    
    p, ul, ol{
        margin: 0 0 .625rem
    }
    h1{
        margin: .75rem 0;
        font-size: 1.125rem;
    }
    
    h1:nth-of-type(2){
        margin-bottom: .75rem;
    }
    
    h2{
        font-size: 1rem;
    }
    
    h3{
        margin: 0 0 .75rem;
        font-size: 1.5rem;
    }
    a {
        font-weight: bold;
    }
    article br{
        display: none;
    }
    
    ul li,
    ol li{
        padding-left: .937rem;
    }
    ul li:before,
    ol li:before{
        margin-left: -.937rem;
    }
}

@media only screen and (max-width:29.937rem) {
    h1 {
        font-size: 1.5em;
    }
}
