/* CSS Document */
/* Designed by Sahand Sedghi for Michael... Hey do I get overtime for this? */

body{
	margin: 0;
	padding: 0;
	font-family: georgia, times, "times new roman", serif;
	color: #000;
	background-color: #666666;
	}

#container {
	margin: 1em 5%;
	background-repeat: repeat-y;
	border: 1px solid #333;
	background-color: #FFFFFF;
	}
	
#banner	{
	border-bottom: 1px solid #333;
	}
	
#banner h1 {
	margin: 0;
	padding: 0.5em;
	}
h1 {
	margin: 0;
	padding: .5em;
	}

#nav {
	float: left;
	width: 160px;
	margin-left: 10px;
	padding-top: 1em;
	}
	
/*Okay if you want to design the nav links like I suggested (bulleted list and styled w/ css) 
You must add rules to style the ul and li
For example:
ul {
	text-decoration: none;
	list-style: none;
	padding-left: 0px;
	}
and/or

ul li link:hover {
	rule 1;
	rule 2;
	}
*/
	
#nav p { 
	margin-top: 0; 
	}
	
#content {
	padding-top: 1em;
	margin: 0 2em 0 200px;
	
	}

#content h2 { 
	margin-top: 10px;
	}

#footer	{
	clear: both;
	background-color: #333333;
	padding: 1em;
	text-align: right;
	border-top: 1px solid #333;
	color: #FFFFFF;
	}

