#DDMHorzMenu {
	position: absolute;
	z-index: 300;	
	font-size: 1em;
	text-align: left;
	background-color: #666666;
	left: 10px;
	top: 141px;
}

#DDMHorzMenu, #DDMHorzMenu ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: .7em;
}

#DDMHorzMenu a {
	display: block;
	color: #ffffff;
	font-size: 1em;	
	/*height: 2.1em;			 combined with line-height */
	line-height: 2.1em;		/* these decide how far below the top level the sub lists start */
	text-decoration: none;
	text-align: center;
	padding-left: .5em;
	padding-right: .5em;
	white-space: nowrap;
}

#DDMHorzMenu a:hover {
	font-size: 1em;
	color: #F3B313;
}

#DDMHorzMenu li { /* all list items */
	float: left;
	/*height: 2.1em;   distance between each item in the sub lists */
	white-space: nowrap;
	border-right: 1px solid #979291;
}

#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: #979291;
	border-left: 1px solid #CAC7C7;
	border-right: 1px solid #CAC7C7;
	border-top: 1px solid #CAC7C7;
	font-size: 1.1em;
	font-weight: normal;
}

#DDMHorzMenu li ul li {
	border: none;
	width: 100%;
	background-image: none;
	white-space: normal;
	/*height: 2em;*/
	border-bottom: 1px solid #CAC7C7;
}

#DDMHorzMenu li ul li a {
	color: #ffffff;
	text-align: left;
	font-size: .9em;
	font-weight: normal;
	white-space: normal;
	border-right: none;
}

#DDMHorzMenu li ul li a:hover {
	background-color: #CAC7C7;
	color: #ffffff;
	font-size: .9em;
}

#DDMHorzMenu li ul li ul li a {
	font-size: .8em;
}

#DDMHorzMenu li ul li ul li a:hover {
	font-size: .8em;
}

#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;
}







