/* CSS Document */

/*the a attribute controls the a href or link colors of the page*/		
a:link {
color: #333333;
text-decoration: none;
background: transparent;
}

a:visited {
color: #333333;
text-decoration: none;
background: transparent;
}

a:hover {
color: #666666;
text-decoration: underline;
background: transparent;	
}


/*The body tag controls the overall 
look of your pages such as alignment and background color*/
body {
background-color: #525252;
background-image: url(images/bg.gif);
     text-align:center;
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size: 12px;
		}
		
/*The header ID in this stylesheet holds the background graphic and the logo*/		
	#header { 
		width:740px;
		height: 100px;
		margin-right:auto;
		margin-left:auto;
		margin-top:0px;
		padding:0px;
		border: 1px solid Black;
		background-color: Black;
		background-image: url(images/header.jpg);
		background-repeat: no-repeat;
		}
		
/*The topnav ID in this stylesheet controls the white horizontal
navigation in the top right corner of the page*/			
		#topnav { 
		width:740px;
		height: auto;
		margin-right:auto;
		margin-left:auto;
		margin-top:0px;
		padding: 0px;
		text-align: right;
		border: 1px solid Black;
		background-color: #646464;
		border: 1px solid;
		border-bottom-color: Black;
		border-left-color: Black;
		border-right-color: Black;
		border-top-color: White;
		font-size: 10px;
		font-weight: bold;
		color: White;
		}
		
	/*The following code controls the link colors of the horizontal
navigation found in the top right corner of the page*/
a.topnav:link {
color: white;
text-decoration: none;
background: #646464;
}

a.topnav:visited {
color: white;
text-decoration: none;
background: #646464;
}

a.topnav:hover {
color: black;
text-decoration: none;
background: white;	
}	
		
	#pagebox { /*overall box that houses all the content*/
	background: white;
	background-image: url(images/box_bg.gif);
		width:740px;
		margin-right:auto;
		margin-left:auto;
		margin-top:0px;
		padding:0px;
		text-align:left;
		border: 1px solid Black;
	voice-family: "\"}\"";
	voice-family: inherit;
	width:738px;
	}
html>body #pagebox {
	width:738px;
	}
	
/*This content box controls the left hand column of the page*/			
	#contentleft {
		width:175px;
		padding:0px;
		float:left;
		background:transparent;
		}

/*This content box controls the center column of the page*/			
	#contentcenter {
		width:400px;
		padding:0px;
		float:left;
		background:white;
		}
	
/*This content box controls the right hand column of the page*/			
	#contentright {
	overflow: auto;
		width:160px;
		height: 426px;
		padding:0px;
		float:right;
		background:#eee;
		}	
		
/*The bottomnav ID in this stylesheet controls the
horizontal navigation at the bottom of the center column box
This box is a nested div in the html code much like a nested
table would be*/			
#bottomnav {
	background: White;
	width: 415px;
	font-size: 10px;
	text-align: center;
}	
	
/*The text box class in this stylesheet - unlike the IDs in this page can 
be used several times within the page. Currently, you can find one instance
in the left hand column under the navigation buttons*/
.textbox {
	background: transparent;
	width: 130px;
	height: auto;
	margin-left: 8px;
	border: 1px solid White;
	padding: 2px;
	color: white;
	font-size: 10px;
	text-align: left;
}


		
	p,pre {
		margin:0px 10px 10px 10px;
		}
		
	h1 {
		font-size:14px;
		margin:10px 10px 10px 10px;
		}
	
/*The contentright ID in this stylesheet controls the font size 
of the paragraph text in the right hand column scrollbox*/
#contentright p { font-size:10px}

/*Start navlist*/
/*The following navlist areas controls the images, size, 
placement and cbackground color of the nav buttons
located in the top left hand column of the page*/	
#navlist {
	width: 150px;
	float: left;
	list-style-position: outside;
	list-style-image: none;
	list-style-type: square;

}


#navlist ul {
	margin: 0; /*removes indent IE and Opera*/
	padding: 0; /*removes indent Mozilla and NN7*/
	list-style-type: none; /*turns off display of bullet*/
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
}
#navlist li {
	margin: 0px 0 3px 0;
	font-weight: bold;
}

#navlist a {
	/*/*/display: block;
	padding: 2px 2px 2px 17px;
	border-top: 1px solid white;
	border-bottom: 1px solid white;
	width: 150px;
	background-color: transparent; /* */
	font-weight: bold;
	voice-family: "\"}\"";
	voice-family: inherit;
	width:131px;
	}
html>body #navlist {
	width:131px;
	}

#navlist a:link {
	color: White;
	/*/*/color: white;
	text-decoration: none; /* */
}

#navlist a:visited {
	color: white;
	/*/*/color: white;
	text-decoration: none; /* */
}

#navlist a:hover {
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	background-color: black;
	color: white;
}
/*End navlist*/




		
