/*   Background Color and Width of Main Nav Bar   */

table#nav {
	z-index: 998;
}
 

table#nav td.submenu ul.level2 a { text-align:left; color:#fff; font-weight:normal; padding:0 0 0 4px; overflow:hidden; } 

table#nav ul { list-style: none; } 

table#nav td.submenu ul.level2 { font-weight:normal; 
	z-index: 999;
	text-align: left; 
	background-color: #7C7B87; /* background color of sub-menus */
	padding: 0;
	margin: 0;
	display: none;
	
	/*  Change opacity here, all 4 lines  */
	opacity: .95;
	-moz-opacity: .95;
	-khtml-opacity: .95;
	filter: alpha(opacity=95);
} 


table#nav td.submenu:hover ul.level2 { display: block; } 

table#nav td.submenu a:hover ul { display: block; } 

table#nav td.submenu ul.level2 li:hover { 
	background-color: #9B99AF; /* hover color of sub-menus */
} 

table#nav td.submenu ul.level2 li:hover a { 
	color: #FFF; /* hover color of sub-menus */
}

table#nav td.submenu li { 
	border-bottom: 1px dotted #38373F; /* bottom border color of sub-menus */
	padding:7px;  /*padding of submenus */
	margin:0;
	width:200px; /*  sub-menu width (fixed)  */
	cursor: hand;								/* KMD: Change for MSIE div-clickable */
	behavior: url(/css2/menus.htc);				/* KMD: Change for MSIE div-clickable */
	overflow:hidden;
} 

table#nav td.submenu li a { 
	font-size: 9pt; 							/* Font size of submenus */
	font-family: Arial, Helvetica, sans-serif; /* Font of sub-menus */
	padding:0;
	margin:0;
	color:#fff;
}

table#nav td.submenu ul.level2 
{

	position:absolute;
	z-index:100;
	top:166px; /* If screen placement changes, update this value to align menus to top of window (also below) */
	margin-left:1px;
}
	* html table#nav td.submenu ul.level2 {
		top:166px; /* IE positioning, update this value to align menus to top of window for IE only */
		margin-left:100px;
	}
	
	*:first-child+html table#nav td.submenu ul.level2 {
		top:166px; /* IE 7 hack */
		margin-left:100px;
	} 

.turnedOn {
	color: #333333;
}

table#nav td#current a {
	color:#000; /*    Use id="current" to highlight a <td> tag within the main nav to make "currently on"    */
} 

table#nav td#current ul.level2 li a
{
	color:#fff;
}