/*Aaron Manville*/
/* So the HTML5 structural tags work in older browsers */
article, aside, figure, footer, header, nav, section {
    display: block;
}
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 {
	padding: 1em;
	margin: 1em;
	float: center;
}
/* the styles for the form */
fieldset {
    margin-top: 0em;
    margin-bottom: .5em;
    padding: .5em 1em;
}
legend {
    color: black;
    font-weight: bold;
    font-size: 85%;
}
label {
    float: left;
    width: 10em;
    text-align: right;
}
input, select {
    width: 15em;
    margin-left: 0.5em;
    margin-bottom: 0.5em;
}
input:required, input[required], input:invalid {
	border: 2px solid black;
}
input:valid {
	border: 1px solid black;
}
input:invalid {
	box-shadow: none;
}
br {
    clear: both;
}
#comments {
width: 500px;
height: 150px;
}
