/* 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: 825px;
    margin: 0 auto;
    border: 3px solid #3399cc;
    background-color: silver;
}

/* the styles for the header */
header {
	padding: 1.5em 0;
	background-image: -moz-linear-gradient(
	    30deg, #3399cc 0%, silver 30%, white 50%,silver 80%, #3399cc 100%);
	background-image: -webkit-linear-gradient(
	    30deg, #3399cc 0%, silver 30%, white 50%, silver, #3399cc 100%);
	background-image: -o-linear-gradient(
	    30deg, #3399cc 0%,silver 30%, white 50%, silver 80%, #3399cc 100%);
	background-image: linear-gradient(
	    30deg, #3399cc 0%, silver 30%, white 50%, silver, #3399cc 100%);
}
header h1 {
	color: blue;
	text-align: center;
}
header h2 {
	font-style: italic;
	text-align:center;
}
header img {
	float: left;
	padding: 0 30px;
}

/* the styles for the navigation bar */
nav {
	clear: left;
	margin: 0;
	padding: 0;
}
nav ul {
	margin-left: 0;
	margin-bottom: 0;
	list-style: none;
	padding: 1em 0;
	background-color: blue;
	text-align:center;
	
}
nav li {
	display: inline;
}
nav a{
	color: silver;
	text-decoration: none;
	padding: 1em 1.5em;
	font-weight: bold;
	border-left: 2px solid #3399cc;
	
}

nav a.current { color: white; }
/* the styles for the section */
section {
	clear: left;
	padding: 0 20px;
	width: 525px;
	float: right;
}
section h1 {
	color: blue;
	font-size: 150%;
	padding: .5em 0 .25em;
	text-align:center;
}
section h2 {
	font-size: 120%;
	padding-bottom: .25em;
	text-align:center;
}
section h4{
text-align: center;

}

section p {
	padding-bottom: .5em;
}

section ul {
	padding: 0 0 1.5em 1.25em;
	list-style-type: circle;
}
section li {
	padding-bottom: .35em;
}

figure {
		margin-top: 1em; }
	figcaption {
		color:blue;
		font-weight: bold;
		}
	table {
		border-collapse: collapse;
		
		}
		
	thead{
		border-top: 2px solid #3399cc;
		border-bottom: 2px solid #3399cc;
		
	}
	tfoot{
	border-top:2px solid #3399cc;
	}
	
	th, td {
		padding: .2em .7em;
		text-align: left;
		border-right: 2px solid #3399cc;
	    border-left: 2px solid #3399cc;
	}
	tr{
	border-bottom:2px solid #3399cc;
	}

aside {
	width: 215px;
	float: left;
	padding-left: 20px;
}
aside h1 {
	color: blue;
	font-size: 150%;
	padding: .5em 0 .25em;
}
aside h2 {
	font-size: 120%;
	padding-bottom: .25em;
}
aside img {
	padding-bottom: 1em;
}





/* the styles for the footer */
footer {
	border-top: 3px solid #3399cc;
	clear: both;
}
footer p {
	padding: 1em 0;
	text-align: right;
}
