@charset "utf-8";
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-condensed-v25-latin-regular.eot'); 
  src: local(''),
       url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'), 
       url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'), 
       url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'), 
       url('../fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg'); 
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-condensed-v25-latin-700.eot'); 
  src: local(''),
       url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'), 
       url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'), 
       url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'), 
       url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg'); 
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.2em/1.3em 'Calibri', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 3rem;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}
p a.color{
    color: #0000FF;
    text-decoration: underline #0000FF; 
}
strong{
    font-weight: 700;
}
.font{
    font: 400 0.75em/1.3em 'Roboto Condensed', Arial, sans-serif; 
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.392em;
    line-height: 1.1;
    font-family: "Times New Roman", serif;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul li {
    padding-left: 2rem;
}
ul li:before {
    content: "•";
    font-size: 0.8em;
    float: left;
    margin: 0 0 0 -1rem;
}
header{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}
footer{
    display: flex;
    justify-content: space-between;
    margin: 1rem -1rem;
}
@media only screen and (max-width: 929px) {
    body{
        font-size: 1em;
        line-height: 1.3em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
      :is(a,span){
        display: inline-block;
    }
    header{
        justify-content: center;
    }
    p{
        text-align: left;
    }
    footer{
        margin: 0;
    }
}
@media only screen and (max-width: 700px){
    footer{
        flex-direction: column;
    }
    footer p{
        text-align: center;
        font-size: 0.9em !important;
    }
}
@media only screen and (max-width: 480px){
    ul li {
    padding-left: 1rem;
}
}