html {
	width: 100%;
	height: 100%;
}

body {
	width: 100%; height: 100%;
	font-size: 12px;
	padding: 0;
	margin: 0;
	font-family: 'Helvetica Neue', 'Helvetica', Arial, sans-serif;
	background: blue; color: white;
	text-align: justify;
	position: relative;
}

.container {
	width: 100%; max-width: 600px;
	padding: 25px;
	position: absolute;
	top: 50%; left: 50%;
	transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
}

.spacer {
	clear: both;
	height: 25px;
}

a {
	text-decoration: underline;
	font-weight: bold;
}
a:link, a:visited, a:active, a:hover {
	color: white;
}

.logo {
	width: 200px; height: auto;
}

img {
	border: none;
}

h1 {
	font-size: 30px; line-height: 30px;
	font-weight: bolder;
	margin: 25px 0 0 0; padding: 0;
}
h2 {
	font-size: 20px; line-height: 24px;
	font-weight: normal;
	margin: 0 0 25px 0; padding: 0;
}
h3 {
	font-size: 16px; line-height: 20px;
	font-weight: bolder;
	margin: 25px 0; padding: 0;
}

p {
	font-size: 14px;
	line-height: 16px;
}

ul {
	margin: 0; padding: 0;
}
li {
	list-style-type: none;
	margin: 0 15px 0 0; padding: 0;
	float: left;
}