
@charset "utf-8";
/* Standard */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800');

* {
   box-sizing:border-box;
   margin: 0;
}

html {
   min-height: 100%;
}
   
body {
   color:#486FAB;
   font-family:'Open Sans', Helvetica, Arial, sans-serif;
   font-size:0.938em;
   line-height:1.3em;
}

#wrapper {
   position:relative;
   max-width:575px;
   min-width: 250px;
   margin: 1rem auto;
   border:solid 2px #486FAB;
   background:#fff;
   overflow:hidden;
   padding:0.625rem 1rem;
}
a {
   color:#486FAB;
   text-decoration:none;
}
p {
   padding-bottom:1rem;
}
h1 {
   margin: 0rem 0rem 0.75rem;
   font-size:1.8em;
   line-height:0.9em;
   color: #DA454B;
   text-align: center;
}

h1 span {
   font-size:0.625em;
}
h1 span:last-of-type{
   display: block;
}
h2 {
   font-size:1em;
   line-height:1.3em;
   margin-bottom:0;
}
h3 {
   font-size:1em;
   line-height:1.3;
   margin-bottom:0;
}
ul {
  padding: 0rem 0rem 1rem 0.25rem;
  list-style-image: url();
  list-style: none;
}
ul:last-of-type{
   padding-right: 0.25rem;
}
li {
  padding-left: 0.625rem;
}

ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.325em;
  position: relative;
  color: #DA454B;
  float: left;
  top: -2px;
  margin-left: -0.625rem;
}

header {
  padding: 0rem;
  text-align: justify;
}
header img{
   float: right;
   margin-left: 0.7rem;
}
article {
  padding:0rem;
}
article p:last-of-type{
   text-align: justify;
}
footer {
  padding: 0rem;
}
.clearfix:after {
   content: ".";
   clear: both;
   display: block;
   visibility: hidden;
   height: 0px;
}
a:hover {
   text-decoration:underline;
}
i{
  font-style: normal;
}
img {
   max-width:100%;
   height:auto;
   display: inline-block;
   vertical-align: middle;
}
@media only screen and (max-width:575px) {
   #wrapper {
      border:none;
      margin: 0 auto;
   }
   header img{
      float: none;
      margin-bottom: 1rem;
   }
   p, article p:last-of-type{
    text-align: left;
   }
   ul:last-of-type{
      padding-right: 0;
   }
}