/*   Background Color and Width of Main Nav Bar   */

table#menu {
	font-family:Arial, Helvetica, Sans-serif; 
	height:19px; 	
	text-align: left;
	z-index: 8;
	margin: 0;
	padding: 0;
}


#menu img {
		padding: 0;
	}

/*   Font and Size of Main Menus   */ 

table#menu a {
	font-size:12px; 
	color:#395883; 
	text-decoration:none; 
	display:block;
} 

table#menu a:hover { 
	color:#3a6986; text-decoration:underline; display:block; 
} 

	table#menu td#current a {
		color:#3a6986; /*    Use id="current" to highlight a <td> tag within the main menu to make "currently on"    */
	}

table#menu td { position:relative; text-align:left; } 

table#menu td.submenu a { text-align:center; } 

table#menu td.submenu ul.level2 a { text-align:left; color:#395883; font-weight:normal;  } 

table#menu ul { list-style: none; } 

table#menu td.submenu ul.level2 { font-weight:normal; 
	z-index: 100;
	text-align: left; 
	background-color: #E5E6E1; /* background color of sub-menus */
	padding: 0;
	margin: 0;
	display: none;
	
	/*  Change opacity here, all 4 lines  */
	opacity: 0.95;
	-moz-opacity: 0.95;
	-khtml-opacity: 0.95;
	filter: alpha(opacity=95);
} 


table#menu td.submenu:hover ul.level2 { 	display: block; } 

table#menu td.submenu a:hover ul { display: block; } 

table#menu td.submenu ul.level2 li:hover { 
	background-color: #A2ABB4; /* hover color of sub-menus */
} 

table#menu td.submenu ul.level2 li:hover a { 
	color: #FFF; /* hover color of sub-menus */
}

table#menu td.submenu li { 
	border-bottom: 1px solid #afafaf; /* bottom border color of sub-menus */
	
	border-left: 1px solid #afafaf;
	border-right: 1px solid #afafaf;
	
	padding:3px 4px 3px 4px; /* padding of submenus */
	margin:0;
	width:129px; /*  sub-menu width (fixed)  */
	cursor: hand;								/* KMD: Change for MSIE div-clickable */
	behavior: url(css/menus.htc);				/* KMD: Change for MSIE div-clickable */
} 

table#menu td.submenu li a { 
	font-size: 8pt; 							/* Font size of submenus */
	font-family: Arial, Helvetica, sans-serif; /* Font of sub-menus */
	padding:0;
	margin:0;
}

table#menu td.submenu ul.level2 {
	position:absolute;
	z-index:100;
	top:320px; /* If screen placement changes, update this value to align menus to top of window (also below) */
}

	* html table#menu td.submenu ul.level2 {
		top:19px; /* IE positioning, update this value to align menus to top of window for IE only */
	}
	
	*:first-child+html table#menu td.submenu ul.level2 {
		top:19px; /* IE 7 hack */
	} 

.turnedOn {
	color: #333333;
}

