/* 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; 
	
	left:10px;
	top:0px;
	float:left;
	position:absolute;
	margin:0px auto;
	margin-left:0px;
	
	width:280px;
	height:auto; 

	
	z-index:100;
	
	font-family:Arial, Helvetica, sans-serif;
	font-size: .8em;
	text-align:left;
	vertical-align:baseline;
	
	padding-top:26px;
	padding-bottom:0px;
	
}




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

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



li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 0px;
	left: 0px;
	width:100px;
	z-index:222;
	margin-top:2px;
}

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;
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
	position: absolute; 
	top:42px; /*controls position of secondary menu*/
	
}



/* the nav styles for the menu links*/

.navOn01, .navOn02, .navOn02, .navOn03, .navOn05 {	
	display:block;
	height:15px;
	padding:32px 3px 0px 3px;
	margin-right:0px;
	text-decoration:none;
	font-weight:normal;
	color:#990000;
	
	text-decoration:none;
	text-align:center;
	
	width:32px;

}


.navOn01 {
	background-image:url(../graphics/nav/01.gif);
	background-position:top center;
	background-repeat:no-repeat;


	}

.navOn02 {
	background-image:url(../graphics/nav/02.gif);
	background-position:top center;
	background-repeat:no-repeat;

	}


.navOn03 {
	background-image:url(../graphics/nav/03.gif);
	background-position:top center;
	background-repeat:no-repeat;

	}


.navOn04 {
	display:block;
	height:15px;
	padding:32px 3px 0px 3px;
	margin-right:0px;
	text-decoration:none;
	font-weight:normal;
	color:#990000;
	
	text-decoration:none;
	text-align:center;
	
	width:44px;

	background-image:url(../graphics/nav/04.gif);
	background-position:top center;
	background-repeat:no-repeat;
	
	}

.navOn05 {

	background-image:url(../graphics/nav/05.gif);
	background-position:top center;
	background-repeat:no-repeat;
	}


.navOff01, .navOff02, .navOff03, .navOff05 {
	display:block;
	height:15px;
	padding:32px 3px 0px 3px;
	margin-right:0px;
	text-decoration:none;
	font-weight:normal;
	color:#333333;
	
	text-decoration:none;
	text-align:center;
	
	width:32px;
}


.navSpacer{
	display:block;
	height:15px;
	padding:32px 3px 0px 3px;
	margin-right:0px;
	text-decoration:none;
	font-weight:normal;
	color:#333333;
	
	text-decoration:none;
	text-align:center;
	
	width:3px;
}

.navOff01:hover{
	background-image:url(../graphics/nav/01.gif);
	background-position:top center;
	background-repeat:no-repeat;

	color:#990000;
}

.navOff02:hover{
	background-image:url(../graphics/nav/02.gif);
	background-position:top center;
	background-repeat:no-repeat;

	color:#990000;
}
.navOff03:hover{
	background-image:url(../graphics/nav/03.gif);
	background-position:top center;
	background-repeat:no-repeat;

	color:#990000;
}
.navOff04:hover{
	background-image:url(../graphics/nav/04.gif);
	background-position:top center;
	background-repeat:no-repeat;

	color:#990000;
}

.navOff05:hover{
	background-image:url(../graphics/nav/05.gif);
	background-position:top center;
	background-repeat:no-repeat;

	color:#990000;
}

.navOff04 {
	display:block;
	height:15px;
	padding:32px 3px 0px 3px;
	margin-right:0px;
	text-decoration:none;
	font-weight:normal;
	color:#333333;
	
	text-decoration:none;
	text-align:center;
	
	width:44px;
	}

/*sub-menu Heading */
.navsubBold{
	display:block;
	width:138px;
	height:auto;
	background-color:#FFFFFF;
	padding:5px;
	border:1px solid #CCCCCC;
	border-bottom:1px solid #CCCCCC;
	border-left:1px solid #CCCCCC;
	border-right:1px solid #CCCCCC;
	font-size:.8em;
	font-weight:bold;
	color:#000000;
	text-decoration:none;
	margin-left:5px;
}

.navsubBold:hover{
	background-color:#999;
	color:#FFF;
	text-decoration:none;
}




/*sub menu attributes*/
.navsub{
	display:block;
	width:100px;
	height:auto;
	background-color:#FFFFFF;
	padding:5px;
	border-bottom:1px solid #CCCCCC;
	border-left:1px solid #CCCCCC;
	border-right:1px solid #CCCCCC;
	color:#666666;
	font-size:.8em;
	text-decoration:none;
	text-indent:15px;
	margin-left:0px;
	
	
}

.navsub:hover{
	background-color:#999;
	color:#FFF;
	text-decoration:none;
	
}



