/*Aaron Manville*/
/* So the HTML5 structural tags work in older browsers */
article, aside, figure, footer, header, nav, section {
    display: block;
}
/* the styles for the elements */
* {
	margin: 0;
	padding: 0;
}
html {
	background-color: black;
}
body {
	font-family: Arial, Helvetica, sans-serif;
    font-size: 87.5%;
    width: 800px;
    margin: 0 auto;
    border: 3px solid black;
    background-color: grey;
}
a:focus, a:hover {
	font-style: italic;
}
/* the styles for the header */
header img {
width: 800px;
display: center; 
}

/* the styles for the navigation bar */
nav {
	clear: left;
	margin: 0;
	padding: 0;
}
nav ul {
	margin-left: 0;
	margin-bottom: .5em;
	list-style: none;
	padding: 1em 0;
	background-color: red;
	
}
nav li {
	display: inline;
}

nav a {
	color: black;
	text-decoration: none;
	padding: 1em 2em;
	font-weight: bold;
	border-right: 2px solid #fffded;
}

section {
	clear: left;
	padding: 0 20px;
	width: 525px;
	float: right;
}
section h1 {
	color: black;
	font-size: 150%;
	padding: .5em 0 .25em;
}
section h2 {
	font-size: 120%;
	padding-bottom: .25em;
}
section p {
	padding-bottom: .5em;
}

section ul {
	padding: 0 0 1.5em 1.25em;
	list-style-type: circle;
}
section li {
	padding-bottom: .35em;
}

article {
	border-top: 2px solid #800000;	
	border-bottom: 2px solid #800000;
}
article h1 {
	color: black;
}
aside {
	width: 215px;
	float: right;
	padding-top: 1em;
	padding-left: 20px;
}

aside img {
	padding-bottom: 1em;
	width: 150px;
}
/* the styles for the footer */
footer {
	border-top: 3px solid black;
	clear: both;
}
footer p {
	padding: 1em 0;
	text-align: center;
}
