@charset "utf-8";
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot');
    src: local(''),
        url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'),
        url('../fonts/open-sans-v34-latin-regular.woff') format('woff'),
        url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'),
        url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v34-latin-700.eot');
    src: local(''),
        url('../fonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/open-sans-v34-latin-700.woff2') format('woff2'),
        url('../fonts/open-sans-v34-latin-700.woff') format('woff'),
        url('../fonts/open-sans-v34-latin-700.ttf') format('truetype'),
        url('../fonts/open-sans-v34-latin-700.svg#OpenSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    min-height: 100%;
}
img {
    max-width: 100%;
    height: auto;
    border: none;
}
body {
    color: #000;
    font: 400 0.875em/1.5em 'Open Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 740px;
    margin: 0.625rem auto;
    border: 2px solid #1e539d;
    overflow: hidden;
    background-color: #fff;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #1e539d;
    text-decoration: none;
    white-space: nowrap;
}
h1 {
    margin: 1rem 0;
    font-size: 1.9em;
    line-height: 1.2;
    text-align: center;
    color: #1e539d;
}
h2 {
    border-color: #153b6f;
    margin: 0 0 0 -1.125rem;
    padding: 0.35rem 0.75rem;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: bold;
    color: #fff;
    background: #1e539d;
    display: inline-block;
    position: relative;
}
h3 {
    font-size: 1.25em;
    text-align: center;
    line-height: 1.2;
}
h2:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    border-style: solid;
    border-width: 0 1.2em 1.2em 0;
    border-color: transparent;
    border-right-color: inherit;
    width: 0;
    height: 0;
}
p {
    margin-bottom: 1rem;
}
ul {
    margin: 0 0 15px;
    padding: 0.75rem;
    background: #cdcdcd;
    list-style: none;
}
ul li {
    padding-left: 1.25rem;
    margin-bottom: 3px;
}
ul li:before {
    content: "\25a0";
    color: #1e539d;
    float: left;
    font-size: 0.7rem;
    text-indent: -1.25rem;
    margin-top: -1px;
}
@-webkit-keyframes slidy {
    0% { left: 0%; }
    16.6% { left: 0%; }
    33.2% { left: -100%; }
    49.8% { left: -100%; }
    66.4% { left: -200%; }
    83% { left: -200%; }
    100% { left: -300%; }
    }
    @keyframes slidy {
    0% { left: 0%; }
    16.6% { left: 0%; }
    33.2% { left: -100%; }
    49.8% { left: -100%; }
    66.4% { left: -200%; }
    83% { left: -200%; }
    100% { left: -300%; }
    }
    header section { overflow: hidden; }
    header section figure img { width: 25%; float: left; }
    header section figure { 
      position: relative;
      width:400%;
      margin: 0;
      left: 0;
      text-align: left;
      font-size: 0;
      -webkit-animation-name:slidy;
      -webkit-animation-duration: 15s;
      -webkit-animation-delay: 5s;
      -webkit-animation-iteration-count: infinite;
      animation: 15s slidy infinite; 
    }
.logo {
    padding: 1rem;
    background: #cdcdcd;
}
:is(article, footer) {
    padding: 1.25rem 1.875rem;
}
footer {
    position: relative;
    background: #cdcdcd;
    border-top: 2px solid #1e539d;
}
footer p:last-of-type {
    text-align: center;
}
footer p:last-of-type a {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    color: #fff;
    font-size: 1.2em;
    line-height: 1.3;
    background: #1e539d;
}
@media (max-width:739px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .logo {
        display: flex;
        justify-content: center;
    }
    article {
        height: auto;
        width: auto;
        margin: 0;
    }
    :is(article, footer) {
        padding: 0.625rem 1.25rem;
    }
    br {
        display: none;
    }
    footer br {
        display: inline;
    }
}