/* CSS Document */

/*
the classes for the divs and classes for the main menu items and the submenus
*/

/*beginning of nav controls */

#navDiv {  /* the container for the top naviagation*/ 
	display:block; 
	float:left; 
	position:relative; 

	width:915px;
	height: auto;
	
	background-color:#FFF;
	
	
	font-family: Arial, Helvetica, sans-serif;
	
	text-align:left;
	text-decoration:none;
	
	z-index:100;
	
}



.menu{ /*the class that controls the look of each menu item*/
	display: block;
	float: left;
	padding:10px 7px 10px 7px;
	
	
	font-size:1.1em;
	font-weight:bold;
	text-decoration:none;
	color: #8B5E25;
	
	background-color:#FFF;
	

	}
	
	
.menu:hover {
	text-decoration:none;
	color: #009FCB;
	background-color:#FFF;
}

.menuOn {
	display: block;
	float: left;
	padding:10px 20px 10px 20px;
	font-size:1.1em;
	font-weight:bold;
	
	text-decoration:none;
	color: #009FCB;
	
	background-color:#FFF;
	

}
