﻿@charset "utf-8";

/* Standard */

:root {
	font-size: 16px;
}

* {
	box-sizing: border-box;
}

html {
	min-height: 100%;
}

a {
	color: #0061ad;
	display: inline-block;
	text-decoration: underline;
	white-space: nowrap;
}

a:hover {
	color: #0061ad;
}

a:active,
a:visited {
	text-decoration: underline;
}

u {
	text-decoration: underline;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

body {
	color: #999;
	font-family: 'Roboto', sans-serif;
	font-size: .875rem;
	line-height: 1.4;
}

#wrapper {
	position: relative;
	max-width: 52.5rem;
	margin: 1rem auto;
	box-shadow: .125rem .125rem .625rem #000;
	padding: 1.188rem;

	background: url(../images/page_bg.png) top left no-repeat;
	background-size: cover;
	background-color: #fff;
	overflow: hidden;
}

p {
	text-align: left;
	margin: 0 0 1.25rem;
}

h1 {
	color: #000;
	font-size: 1.937rem;
	line-height: 1.1;
	margin: 1.875rem 0;
	font-weight: normal;
}

h2 {
	font-size: 1rem;
	line-height: 1.4;
	margin: 0 0 10px;
	font-weight: normal;
}

h3 {
	font-size: .875rem;
	line-height: 1.4;
	margin: 0 0 1.25rem;
}

hr {
	border-top: 1px solid #52BA5A;
}

ul {
	list-style: none;
	margin: 0 0 1.875rem;
	padding: 0;
}

ul li {
	padding-left: 30px;
}

ul li:before {
	content: "";
	float: left;
	position: relative;
	width: .5rem;
	height: .5rem;
	border-radius: 50%;
	background: #999;
	margin-left: -1.25rem;
	top: .375rem;
	box-shadow: .125rem .125rem .187rem #666;
}

.clearfix:after {
	content: ".";
	clear: both;
	display: block;
	visibility: hidden;
	height: 0px;
}

header {
	margin: -1.188rem -1.188rem 1.188rem;
	position: relative;

}

header a {
	max-width: 4.375rem;
	position: absolute;
	top: -1px;
	left: 19px;
}

header > img:nth-of-type(1) {
	max-width: 31.25rem
}

header > img:nth-of-type(2) {
	display: none;
}

article {
	width: 80%
}

footer {
	margin: 0 -1.188rem -1.188rem;
	padding: 1.188rem;
	background-color: #F2F2F2;
}

footer > p {
	color: #000;
	margin: 0;
}


@media only screen and (max-width: 52.437rem) {
	#wrapper {
		margin: 0 auto;
		border: 0;
		padding: 0.625rem;
	}

	a {
		font-weight: bold;
	}

	header {
		margin: -0.625rem -0.625rem 0.625rem;
	}

	header > img:nth-of-type(1) {
		display: none;
	}

	header > img:nth-of-type(2) {
		display: block;
	}

	header a {

		left: .625rem;
	}

	article {
		width: auto;
	}

	footer {

		margin: 0 -0.625rem -0.625rem;
		padding: 0.625rem;
	}



}

@media only screen and (max-width:29.937rem) {
	h1 {
		font-size: 1.75rem;
	}
}