/* 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*/ 
	clear:both; 
	display:block; 
	float:left; 
	position:relative; 
	/*position:absolute; - just testing this*/
	
	left:33px;
	top:7px;
	width:70%;
	height:auto; 
	
	margin:0px 0px 0px 0px;
	
	z-index:100;
	
	font-family:Arial, Helvetica, sans-serif;
	text-align:left;
	

	
}




ul { /* all lists */
	padding:0px;
	margin: 0px 0px 0px 0px;
	list-style:none;
	
		
	}

li { /* all list items */
	float: left;
	position: relative;
	
}


li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}




/* the nav styles for the menu links*/

.navOn, .navOff {	
	display:block;
	width:78px;
	padding: 20px 2px 8px 2px;
	text-decoration:none;
	font-weight:normal;
	text-decoration:none;
	
	text-align:center;


}

.navOn {	
	color:#FFFFFF;
	background-color:#647958;

}

.navOff, .navSpacer {
	
	color:#999999;
	
}


.navOff:hover{

	color:#000000;
}



.navSpacer {

	display:block;
	
	padding: 12px 2px 10px 2px;
	text-decoration:none;
	font-weight:normal;
	text-decoration:none;
	text-align:center;
	font-size:2em;
	

}




/*secondary menu positioning and stuff*/
#subMenu {
	display:block;
	float:left;
	
	width:100%;
	height:auto;
	
	margin: 92px 0px 0px 0px;
	text-align:left;
	z-index:97;
	border-bottom: #999999 1px solid;
}


#subNav {
	margin-left:33px;
}

.subnavOn, .subnavOff {	
	display:block;
	
	width:145px;
	padding: 8px 0px 10px 0px;
	
	text-decoration:none;
	font-weight:normal;
	text-decoration:none;
	text-align:center;


}


.subnavOn {	
	color:#647958;
	font-weight:bold;
	padding: 8px 0px 10px 0px;
}

.subnavOff, .subnavSpacer {
	
	color:#999999;
	
}


.subnavOff:hover{

	color:#000000;
	
}



.subnavSpacer {

	display:block;
	height:13px;
	padding: 1px 5px 10px 5px;
	text-decoration:none;
	font-weight:normal;
	text-decoration:none;
	text-align:center;
	font-size:2em;
	

}





.subnavFirmOn, .subnavFirmOff {	
	display:block;
	
	width:80px;
	padding: 8px 0px 10px 0px;
	
	text-decoration:none;
	font-weight:normal;
	text-decoration:none;
	text-align:center;


}

.subnavFirmOn {	
	color:#647958;
	font-weight:bold;
	padding: 8px 0px 10px 0px; 
}

.subnavFirmOff, .subnavSpacer {
	
	color:#999999;
	
}


.subnavFirmOff:hover{

	color:#000000;
	
}

