#DDMHorzMenu {
	height: 31px;
	z-index: 300;
	position: relative;	
	left: 6px;
	font-size: 1em;
	text-align: left;
}

#DDMHorzMenu li.DDMFirstItem {
	padding-left: 17px;
}

#DDMHorzMenu li.DDMFirstItem ul li {
	padding-left: 0;
}

#DDMHorzMenu, #DDMHorzMenu ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: .7em;
}

#DDMHorzMenu a {
	display: block;
	color: #ffffff;
	font-size: 1.1em;	
	text-decoration: none;
	text-align: center;
	margin-right: 1px;
	width: 131px;
	white-space: nowrap;
	line-height: 31px;		/* these decide how far below the top level the sub lists start */
	background-image: url(img/menu_item_bg.gif);
	background-repeat: no-repeat;
}


#DDMHorzMenu li.DDMSelectedItem a {
	color: #000000;
	background-image: url(img/menu_highlight_bg.gif);
}

#DDMHorzMenu li.DDMSelectedItem ul li a {
	color: #ffffff;
	background-image: none;
}

#DDMHorzMenu li ul li.DDMSelectedItem a {
	background-image: url(img/subnav_bg.gif);
	background-repeat: repeat-x;
	background-color: #B4CD33;
	color: #000000;
}

#DDMHorzMenu li ul li.DDMSelectedItem ul li a {
	background-image: none;
	background-color: #B2B2B2;
	color: #ffffff;
}

#DDMHorzMenu a:hover {
	color: #000000;
	background-image: url(img/menu_highlight_bg.gif);
}


#DDMHorzMenu li { /* all list items */
	float: left;
	white-space: nowrap;
}

#DDMHorzMenu li ul { /* second-level lists */
	position: absolute;
	width: 128px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	background-color: #B2B2B2;
	border-left: 1px solid #383838;
	border-right: 1px solid #383838;
	border-bottom: 1px solid #383838;
	font-size: 1.1em;
	font-weight: normal;
}

#DDMHorzMenu li ul li {
	border: none;
	width: 100%;
	background-image: none;
	border-top: 1px solid #ffffff;
	white-space: normal;
	/*height: 2em;*/
}

#DDMHorzMenu li ul li a {
	width: 118px;
	color: #ffffff;
	text-align: left;
	font-size: .9em;
	font-weight: normal;
	white-space: normal;
	border-right: none;
	background-image: none;
	line-height: 1.7em;
	display: block;
	padding: 3px 5px 3px 5px;
}

#DDMHorzMenu li ul li a:hover {
	background-image: url(img/subnav_bg.gif);
	background-repeat: repeat-x;
	background-color: #B4CD33;
	color: #000000;
	font-size: .9em;
}

#DDMHorzMenu li ul li.DDMSelectedItem ul li a:hover {
	background-image: url(img/subnav_bg.gif);
	background-repeat: repeat-x;
	background-color: #B4CD33;
	color: #000000;
}

#DDMHorzMenu li ul li ul {
	border-top: 1px solid #383838;
	font-size: 1em;
}

#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: -2.2em 0 0 128px;
}

#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;
}
