#DDMHorzMenu {
	position: absolute;
	z-index: 300;	
	font-size: 1em;
	text-align: left;
	background-color: #525252;
	background-image: url("images/menu_bg.jpg");
	left: 0;
	top: 119px;
	height: 26px;
	
}

#DDMHorzMenu, #DDMHorzMenu ul { /* all lists */
	margin: 0;
	list-style: none;
	font-size: .6em;
	padding-left: 176px;
	width: 624px;
}

#DDMHorzMenu a {
	display: block;
	color: #ffffff;
	text-decoration: none;
	text-align: center;
	padding-left: .5em;
	padding-right: .5em;
	white-space: nowrap;
	font-weight: bold;
}

#DDMHorzMenu a {
	display: block;
	color: #ffffff;
	text-decoration: none;
	text-align: center;
	padding-left: .5em;
	padding-right: .5em;
	white-space: nowrap;
	font-weight: bold;
	border-right: solid 1px #FFFFFF;
}

#DDMHorzMenu a:hover {
	font-size: 1em;
	color: #B1DABC;
}

#DDMHorzMenu li { /* all list items */
	float: left;
	/*height: 2.1em;   distance between each item in the sub lists */
	white-space: nowrap;
	
	padding-top: 5px;
	padding-left: 5px;
}

#DDMHorzMenu li.DDMLastItem a {
	border-right: solid 0px #FFFFFF;
}

#DDMHorzMenu li ul { /* second-level lists */
	position: absolute;
	width: 12em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	background-color: #F6F0CC;
	font-size: 1.1em;
	font-weight: normal;
	padding: 0px;
	margin: 0px;
}

#DDMHorzMenu li ul li {
	border: none;
	width: 100%;
	background-image: none;
	white-space: normal;
	padding: 0px;
	/*height: 2em;*/
}

#DDMHorzMenu li ul li a {
	color: #000000;
	text-align: left;
	font-size: .9em;
	font-weight: normal;
	white-space: normal;
	border-right: none;
	padding: 5px 5px 5px 5px;
}

#DDMHorzMenu li ul li a:hover {
	background-color: #646464;
	color: #FFFFFF;
	font-size: .9em;
}

#DDMHorzMenu li ul.leftAlign ul { 
	/* 
		third-and-above-level lists 
		this class difines positioning for menus that have drop to the left to 
		avoid going of the right of the page
	*/
	margin: -1em 0 0 -11em;
}

#DDMHorzMenu li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10.5em;
}

#DDMHorzMenu li:hover ul ul, #DDMHorzMenu li:hover ul ul ul, #DDMHorzMenu li.DDMhover ul ul, #DDMHorzMenu li.DDMhover ul ul ul {
	left: -999em;
}

#DDMHorzMenu li:hover ul, #DDMHorzMenu li li:hover ul, #DDMHorzMenu li li li:hover ul, #DDMHorzMenu li.DDMhover ul, #DDMHorzMenu li li.DDMhover ul, #DDMHorzMenu li li li.DDMhover ul { /* lists nested under hovered list items */
	left: auto;
}







