#DDMHorzMenu {
	position: absolute;
	z-index: 300;	
	font-size: 1em;
	text-align: left;
	left: 40px;
	top: 174px;
	width: 780px;
}

#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;
	border-left: 1px solid #ffffff;
}

#DDMHorzMenu a {
	display: block;
	color: #ffffff;
	font-size: 1em;	
	text-decoration: none;
	text-align: center;
	padding: .15em .5em .15em .5em;
	white-space: nowrap;
	font-weight: bold;
	line-height: 2.05em;		/* these decide how far below the top level the sub lists start */
}

#DDMHorzMenu li.DDMSelectedItem {
	color: #084574;
	background-image: url(images/ddnavbg.gif);
	background-repeat: repeat-x;
	background-color: #FFFFFF;	
}

#DDMHorzMenu li.DDMSelectedItem a {
	color: #084574;
}

#DDMHorzMenu a:hover {
	font-size: 1em;
	color: #084574;
	background-image: url(images/ddnavbg.gif);
	background-repeat: repeat-x;
	background-color: #FFFFFF;	
}

#DDMHorzMenu li { /* all list items */
	float: left;
	white-space: nowrap;
	border-right: 1px solid #ffffff;
}

#DDMHorzMenu li ul { /* second-level lists */
	position: absolute;
	width: 15em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	background-color: #ffffff;
	font-size: 1.1em;
	font-weight: normal;
	border-left: 1px solid #246492;
	border-right: 1px solid #246492;
	border-bottom: 1px solid #246492;
	margin: 0 0 0 -2px
}

#DDMHorzMenu li ul li {
	border: none;
	width: 100%;
	background-image: none;
	white-space: normal;
	/*height: 2em;*/
}

#DDMHorzMenu li ul li a {
	color: #084574;
	text-align: left;
	font-size: .9em;
	font-weight: normal;
	white-space: normal;
	border-right: none;
}

#DDMHorzMenu li ul li a div {
	width: 100%;	/* adjust this to make sublist item witdths fit there containers */
	cursor: pointer;
}

#DDMHorzMenu li ul li a:hover {
	background-color: #94B8DB;
	color: #ffffff;
	font-size: .9em;
	background-image: none;
}

#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;
}







