/*
 *-- Main Content ----------------------------------
 */
body {
	font-family: arial, helvetica, sans-serif;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.3em;
}

h1, h2 {
	font-weight: bold;
	padding: 5px 0;
}

p {
	font-size: 1em;
	padding: 5px 0;
}

ul {
	padding: 5px 0;
	list-style-type: disc;
}

li {
	list-style-position: inside;
}

body > nav {
	display: none;
}

aside {
	margin-top: 20px;
	border-style: solid;
	border-color: black;
	border-width: 1px 0 0 0;
}

/*
 *-- Header ----------------------------------------
 */
header {
	overflow: hidden;
}

header .banner {
	border-bottom: 1px solid black;
}

header > a {
	text-decoration: none;
}

header .banner h1 {
	font-size: 1.5em;
	color: black;
}

header nav {
	color: black;
	border-bottom: 3px solid black;
	margin-bottom: 20px;
	min-height: 1.5em;
}

header nav a {
	color: black;
}

header nav h2 {
	display: inline;
	font-size: 1em;
}

header nav ul {
	margin: 0;
	padding-left: 0;
	list-style-type: none;
	display: inline;
}

header nav li {
	margin: 0;
	display: inline;
	padding: 0;
}

header nav li:after {
	content: ">";
	padding: 0;
}

header nav li:last-child:after {
	content: "";
}

/*
 *-- Footer ----------------------------------------
 */
footer {
	display: block;
	clear: both;
	background: white;
	color: black;
	border-top: 3px solid black;
	padding: 5px 0;
	font-size: 0.8em;
}

footer .left {
	float: left;
}

footer .right{
	float: right;
}

footer:after {
	content: " ";
	display: block;
	clear: both;
}

footer a {
	color: black;
}

