#DDMHorzMenuTN {
	position: absolute;
	z-index: 400;	
	font-size: 1em;
	text-align: left;
	background-color: #ffffff;
	left: 16px;
	top: 99px;
	display:none;
}

#DDMHorzMenuTN li.DDMFirstItem {
	padding-left: 17px;
	display:none;
}

#DDMHorzMenuTN li.DDMFirstItem ul li {
	padding-left: 0;
	display:none;
}

#DDMHorzMenuTN, #DDMHorzMenuTN ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: .7em;
	display:none;	
}

#DDMHorzMenuTN a {
	display: block;
	color: #4b4b4b;
	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 */
}


#DDMHorzMenuTN li.DDMSelectedItem a {
	color: #FFFFFF;
}

#DDMHorzMenuTN a:hover {
	font-size: 1em;
	color: #ffffff;
	background-color: #427e15;
}

#DDMHorzMenuTN li { /* all list items */
	float: left;
	white-space: nowrap;
	border-right: 1px solid #4b4b4b;
}

#DDMHorzMenuTN li.DDMLastItem  {
	border-right: none;
}



#DDMHorzMenuTN 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;
}

#DDMHorzMenuTN li ul li {
	border: none;
	width: 100%;
	background-image: none;
	white-space: normal;
	/*height: 2em;*/
}

#DDMHorzMenuTN li ul li a {
	color: #4b4b4b;
	text-align: left;
	font-size: .9em;
	font-weight: normal;
	white-space: normal;
	border-right: none;
}

#DDMHorzMenuTN li ul li a div {
	width: 100%;	/* adjust this to make sublist item witdths fit there containers */
	cursor: default;
}

#DDMHorzMenuTN li ul li a:hover {
	background-color: #427e15;
	color: #ffffff;
	font-size: .9em;
}

#DDMHorzMenuTN 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;
}

#DDMHorzMenuTN li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10.5em;
}

#DDMHorzMenuTN li:hover ul ul, #DDMHorzMenuTN li:hover ul ul ul, #DDMHorzMenuTN li.DDMhover ul ul, #DDMHorzMenuTN li.DDMhover ul ul ul {
	left: -999em;
}

#DDMHorzMenuTN li:hover ul, #DDMHorzMenuTN li li:hover ul, #DDMHorzMenuTN li li li:hover ul, #DDMHorzMenuTN li.DDMhover ul, #DDMHorzMenuTN li li.DDMhover ul, #DDMHorzMenuTN li li li.DDMhover ul { /* lists nested under hovered list items */
	left: auto;
}







