/* set background color and fonts */
body {
	background-color:#FFC77F;
	font-family: Verdana, Helvetica, Sans-Serif;
}

/* Top level header */
#header {
	text-align:center;
	font-size:2em;
	font-weight:bold;
	padding-bottom:10px;
	padding-top:5px;
}

/* Second level header */

#subheader {
	text-align:center;
	font-size:1.3em;
	padding-bottom:10px;
	border-bottom:thin solid black;
}

/* wrapper for the list of classes: used to get the list centered */

#classList {
	width:100px;
	margin: 0 auto;
	padding-left:-100px;	
}

/* unordered list for the class list.  Shifted left to try and get it centered */

UL {

	
 	white-space:nowrap;	
	padding-left:-100px;;
	margin-left:-50px;	
	
}

/* Text color for links and hovered links */

LI a{
	color:blue;
}
 
LI a:hover{
	color:red;
}

/* Footer style */

#footer {
	border-top:thin solid black;
	padding-top:10px;
	text-align:center;
	font-size:0.8em;
}

/* links colors in footer */
#footer a{
	color:blue;
}
#footer a:hover{
	color:red;
}
