
@charset "utf-8";
/* Standard */
@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i&display=swap');

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

html {
   min-height: 100%;
}
   
body {
   color:#000;
   font-family:'Calibri', Helvetica, Arial, sans-serif;
   font-size:1.063em;
   line-height:1.3em;
}

#wrapper {
   position:relative;
   max-width:750px;
   min-width: 250px;
   margin: 1rem auto;
   border:solid 1px #000;
   background:#fff;
   overflow:hidden;
   padding:3rem 4rem 1rem;
}
a {
   color:#000;
   text-decoration:none;
}
p {
   padding-bottom:1rem;
}
h1 {
   margin: 0rem 0rem 1rem;
   font-size:1.25em;
   line-height:1.1em;
}

h1 span {
   font-size:0.9em;
}

h2 {
   font-size:1em;
   line-height:1.3em;
   margin-bottom:0;
}
h3 {
   font-size:0.938em;
   line-height:1.3;
   margin-bottom:1rem;
}
ul {
  padding: 0rem 0rem 1.5rem;
  list-style: none;
}

li {
  padding-left: 2.75rem;
}

ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.0em;
  position: relative;
  float: left;
  top: 1px;
  margin-left: -2.75rem;
}

header {
  padding: 0 0 2rem;
  text-align: right;
}

article {
  padding:0 0 3rem;
}
article a u{
   color: #0000FF;
}
article aside{
   margin-left: -1.5rem;
}
footer {
   margin: 0 -2rem;
   font-size: 0.6em;
   line-height: 1.3;
   display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-flow:row wrap;
}
footer aside{
   display: flow-root;
   width: 30%;
}
footer aside img{
   float: left;
   margin-right: 0.75rem;
   height: 53px;
}
footer aside p{
   float: left;
}
footer aside:nth-of-type(2){
   text-align: center;
   margin-top: -0.75rem;
}
footer aside:nth-of-type(2) img{
   height: 60px;
}
footer aside:nth-of-type(3){
   text-align: right;
   position: relative;
   width: 40%;
}
footer aside:nth-of-type(3) p{
   float: left;
   width: 200px;
   font-size: 1.1em;
   line-height: 1.1;
}
footer aside:nth-of-type(3) img:last-of-type{
   float: right;
}
footer aside:nth-of-type(3) img:first-of-type{
   position: absolute;
   bottom: 5px;
   left: -1.5rem;
   height: 50px;
}
.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;
}

/* Responsive */
@media only screen and (max-width:750px) {
   #wrapper {
      border:none;
      margin: 0 auto;
      padding: 1rem;
   }
   article aside{
      margin-left: 0;
   }
   footer{
      margin: 0;
   }
   footer aside{
      width: 100% !important;
      padding-bottom: 1rem
   }
   footer aside:nth-of-type(3) img:first-of-type{
      bottom: -2rem;
      left: 0;
   }
   p {
    text-align: left;
   }
  i br{
    display: none;
  }
}
/* Tin developer */