﻿@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: arial;
    font-size: .875rem;
    line-height: 1.4;
    background:url(../images/bg.JPG) repeat-x top center;
	background-size:100%;
}
#wrapper {
    position: relative;
    max-width: 43.75rem;
    margin: 1rem auto;
    border: solid thin #000;
    background-color: #fff;
    overflow: hidden;
}
p {
    text-align: justify;
    margin: 0 0 0.625rem;
}
h1 {
    font-family: 'Dosis', sans-serif;
    text-align: center;
    font-size: 30px;
    line-height: 1.1;
    margin: .625rem 0 0;
    background: #004B98;
    padding: .937rem;
    color: #fff;
}
h1 span {
    font-size: 1.187rem
}



h2 {
    font-size: .875rem;
    line-height: 1.4;
    margin: 0 0 10px;
}

h3 {
    color: #004B98;
    text-align: center;
}

hr {
    border-top: 1px solid #52BA5A;
}
ul {
   list-style: none;
    margin: 0 0 20px;
    padding: 0;
}
ul li {
    padding-left: 1.375rem
}
ul li:before {
    content: "\▪"/* ❖ *  ● ■ ▪ ◆ ❖ ✔ » ▸ ▶ ► ➤ ➢ ➧ ➭ ➽ ➲ 》➠ ◢ ◥ ☛ */
    ;
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height:0.9;
}
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}
header{
    margin: -1.188rem -1.188rem -.625rem;
    padding: 1.187rem 1.187rem 0;
    background: #fff
}
header a{
    max-width: 100%;
    width: 12.5rem;
    margin: 1.25rem 1.25rem 0;
}

footer {
    margin: 0 0 0;
    padding: 0 1.25rem 1.875rem;
}

footer p {
    text-align: left
}


article {
    padding: 1.25rem; 
}

section {
    background: #F5F5F5;
    padding: 1.25rem .625rem 1px;
}





  .slider {
    position: relative;
  }

  .slider > img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 18s linear infinite 0s;
  }

  .slider > img:nth-of-type(1) {
    position: static;
    opacity: 1;
  }

  .slider > img:nth-of-type(2) {
    animation-delay: 6s;
  }
 
  .slider > img:nth-of-type(3) {
    animation-delay: 12s;
  }
 
  
  @keyframes imageAnimation {
    4% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    38% {
        opacity: 0;
    }
  }
  


@media only screen and (max-width:43.687rem) {
    #wrapper {
        margin: 0 auto;
        border: 0;
        padding: 0.625rem;
    }
    
    article {
        padding: 1px
    }
    
    p {
        text-align: left
    }
    
    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.563em;
    }
    h2, h3 {
        font-size: 1em;
    }
}
@media only screen and (max-width:479px) {
    h1 {
        font-size: 1.5em;
    }
}
