/*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;
}
/* the styles for the section */
section {
	clear: left;
	padding: 0 20px;
	width: 525px;
	float: right;
}
section h1 {
	color: #800000;
	font-size: 150%;
	padding: .5em 0 .25em;
}
section h2 {
	font-size: 120%;
	padding-bottom: .25em;
}
section p {
	padding-bottom: .5em;
}
section blockquote {
	padding: 0 2em;
	font-style: italic;
}
section ul {
	padding: 0 0 1.5em 1.25em;
	list-style-type: circle;
}
section li {
	padding-bottom: .35em;
}


aside {
	width: 215px;
	float: right;
	padding-left: 20px;
}
aside img {
	padding-bottom: 1em;
}


/*Styles for the table */
figure {
    margin-top: 1em;
}
figcaption {
	color: black; 
	font-weight: bold;
	}
table {
	float: center;
	border-collapse: collapse;
	border-bottom: 2em;
}
thead, tfoot {
	border-top: 2px solid black;
}
th, td {
	padding: .2em .7em;
	text-align: left;
			}
.border_bottom {
	border-bottom: 2px solid black;
	padding-bottom: 2em;;
}

.right {
	text-align: right;
}

#text {
font-weight: normal;
}
			
footer {
	border-top: 3px solid black;
	clear: both;
}
footer p {
	padding: 1em 0;
	text-align: center;
}
