/*Aaron Manville*/
/* 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;
}
/*styles for the header*/
header img {
width: 800px;
display: center; 
}
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 {
	width: 525px;
	padding: 1em 3em;
	float: right;
}
section ul{
	padding-left: 2em;
}
aside {
	width: 150px;
	float: left;
	padding-top: 1em;
	padding-left: 20px;
}

aside img {
	padding-bottom: 1em;
	width: 150px;
}
aside h1 {
	padding-bottom: 1em;
}
footer {
	border-top: 3px solid black;
	clear: both;
}
footer p {
	padding: 1em 0;
	text-align: center;
}
