#DDMHorzMenu {
	position: absolute;
	z-index: 300;	
	font-size: 1em;
	text-align: left;
	background-color: #001449;
	background-image: url(images/mainmenubg.gif);
	background-repeat: repeat-x;
	background-position: top;
	left: 0;
	top: 242px;
	width: 780px;
	border-top: 4px solid #4968B3;
	border-bottom: 4px solid #6699CC;
}

#DDMHorzMenu li.DDMFirstItem {
	padding-left: 58px;
}

#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: #6699CC;
	font-size: 1em;	
	text-decoration: none;
	text-align: center;
	padding-left: .5em;
	padding-right: .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 a {
	color: #FFFFFF;
}

#DDMHorzMenu a:hover {
	font-size: 1em;
	color: #ffffff;
}

#DDMHorzMenu li { /* all list items */
	float: left;
	white-space: nowrap;
}

#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: #6699cc;
	border-left: 3px solid #6699cc;
	border-right: 3px solid #6699cc;
	border-top: 3px solid #6699cc;
	border-bottom: 3px solid #6699cc;
	font-size: 1.1em;
	font-weight: normal;
}

#DDMHorzMenu li ul li {
	border: none;
	width: 100%;
	background-image: none;
	white-space: normal;
	/*height: 2em;*/
}

#DDMHorzMenu li ul li a {
	color: #BEDCF5;
	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: default;
}

#DDMHorzMenu li ul li a:hover {
	background-color: #94B8DB;
	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;
}







