* {
	margin: 0;
	padding: 0;
}

body {
	font-size: 62.5%;
	font-family: Times, Georgia, serif;
	background-color: white;
	margin: 10px;
}

div#wrapper{
	width: 910px;
	margin: 0 auto;
	background-color: white;
}

h2 {
	font-size:1.75em;
	margin:10px 0px 0px 10px;
	}
	
	
div#special-list {
	padding: 80px 0px 0px 10px;
	margin: 10px
	}
	
div#special-list ul {
	font-size:1.85em;
	line-height:1.95em;
	margin: 10px 0px 0px 60px;
	}
	
div#special-list h1 {
	font-size:2.5em;
	margin: 10px 0px 0px 40px;
	}
	
div#special-list h2 {
	font-size:2.0em;
	margin: 10px 0px 0px 40px;
	}

div#navigation {
	background-color: black; 
	/*set a background color*/
	float: left; 
	/*since the elements in the div are floated we need to float the parent div in order to see the background-color*/
	width: 910px; 
	/*since it is now floating we need a set width otherwise it will only be as wide as the content*/
}

div#navigation ul {
	list-style-type: none; 
	/*remove the default bullet points*/
}

div#navigation ul li { 
	float: left; 
	/*li are block so we float them to the left now they will line up horizontally*/  
}

div#navigation ul li a {
	display: block; 
	/*anchors are usually inline block makes the whole area clickable*/                    
	font-size: 1.6em;
	/*set the font-size*/
	margin-right: 10px; 
	/*some margin on the right of the anchors*/
	padding: 5px 10px;
	/*some padding on the top and bottom*/
	text-decoration: none;
	/*remove the default text-decoration of links*/
}

div#navigation ul li a:link,
div#navigation ul li a:visited {
	color: white;
	background-color: black;
}

div#navigation ul li a:hover {
	color: red;
	background-color: #fff;
}

div#navigation ul li a:active {
	color: white;
	background-color: #270dce;
}

div#main-content {
	width: 580px;
	float: right;
}

div#side-bar a:active {
	color: yellow;
	text-decoration: underline;
}

div#side-bar a:link {
	color: purple;
	text-decoration: underline;
}

div#side-bar a:visited {
	color: gray;
	text-decoration: none;
}

div#side-bar a:hover {
	color: white;
	background-color: red;
	text-decoration: none;
}
div#main-content h1 {
	font-size: 3em;
	padding: 10px;
	margin-left: 115px;
}

div#main-content p{
	font-size: 1.5em;
	margin: 10px 10px 10px 10px;
}


div#main-content li {
	font-size: 1.6em;
	line-height: 1.7em;
	margin: 0px 0px 5px 75px
	}
	
div#main-content h2{
	font-size:2.50em;
	text-decoration:underline;
	margin: 10px 0px 5px 75px;
	padding: 10px 0px 0px 0px;
}

div#main-content h3{
	font-size: 1.75em;
	margin: 15px 0px 0px 0px;
}

div#main-content em{
	font-size: 1.4em;
	}

div#side-bar {
	width: 240px;
	float: left;
	margin: 70px 10px 0px 20px;
}

div#side-bar p{
	font-size: 1.6em;
	line-height: 1.80em;
}	

div#side-bar h2{
	font-size: 4em;
	font-style: italic;
	margin: 10px 0px 10px 0px;
}
	



div#header {
	height: 200px;
	width: 910px;
}

div#table table {
	margin: 10px;
	width: 500px;
	caption-side: bottom;
	border-collapse: collapse;
	color: #bdb76b;
}
	
div#table th,
div#table td {
	border: 3px solid #bdb76b;
	color: black;
	padding: 10px;
	font-size: 1.75em;
}

div#table tr.odd {
	background-color: #eee8aa;
}

div#footer {
	clear: both;
	background-color: white;
	color: #black;
	padding: 25px;
	margin: 15px 0;
	text-align: center;
}

div#footer p {
	font-size: 1.4em;
}

div#footer a:link {
	color: red;
	text-decoration: none;
}

div#footer a:visited {
	color: #bdb76b;
	text-decoration: none;
}

div#footer a:hover {
	color: red;
	background-color: #000;
	text-decoration: none;
}

div#main-content img {
			float: right;
			margin: 0px 10px 20px 10px;
}

	
div#main-content ul li {
	list-style-type: square;
	padding-top: 5px;
	margin-left: 10px;
	}