﻿@charset "utf-8";

* {
	box-sizing:border-box;
}

html {
	min-height: 100%;
	}
	
body {
	color: #000;
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 0.875em;
	line-height: 1.431em;
	background-color: #F0F0F0;
}

#wrapper {
	position:relative;
	max-width:800px;
	margin: 1rem auto;
	border:none;	
	background-color:#fff;
	overflow:hidden;	
}

header {
	padding: 2rem 3rem;	
}

article {
	padding: 0rem 3rem;	
}

footer {
	padding: 1rem 3rem 2rem;	
}

p {
	text-align:left;
}

h1 {
	font-size:2.692em;
	line-height:1.1em;
	hyphens: none;
}

h2 {
	font-size:1.231em;
	line-height:1.231em;
	margin-bottom:0;
	color:#004899;
}

h3 {
	font-size:1.731em;
	line-height:1.231em;
	color:#004899;
}

a:link,a:active,a:visited {
	color:#000;
	text-decoration:none;
}

a:hover {
	text-decoration:underline;
}

a.link:link,a.link:visited{
	width: 250px;
	line-height: 50px;
	display: block;
	text-align: left;
	padding-left:1.5rem;
	margin: 2rem auto;
	color: #fff;
	background:#004899;
	font-weight:bold;
	position:relative;
}

a.link:hover {
	text-decoration: none;
}

a.link:link:after, a.link:visited:after  {
	position:absolute;
	content: "";
  	bottom: 0px;
  	right: 0px;
	border-style: solid;
	border-width: 0 0 50px 80px;
	border-color: transparent transparent #fff transparent;
}

img {
	max-width:100%;
	height:auto;
	display:block;
}

hr {
    border: 0;
    height: 1px;
    background: #004899;
}

ul {
	padding-left:2rem;
}

li {
	padding-bottom:0.2rem;
	list-style-type:none;
}

li:before {
	content: "\2022";
	color: #E30613;
	float: left;
	margin-left:-15px;
}

@media only screen and (max-width:799px) {
	#wrapper {
		border:none;
		margin:0 auto;
		hyphens: auto; 
	}
}
	
@media only screen and (max-width:640px) {
	header {
		padding: 2rem 1rem;		
	}
	
	article,footer {
		padding: 0rem 1rem;		
	}
	
	h1 {
		font-size:2.321em;
		text-align:center;
	}
}

@media only screen and (max-width:419px) {
	header img {
		margin:0 auto;
	}
	
	h3 {
		font-size:1.431em;
	}
	
	ul {
		padding-left:1rem;
	}
}

