#DDMVertMenu {
	position: absolute;
	z-index: 300;	
	font-size: 1em;
	text-align: left;
	background-position: top;
	left: 538px;
	top: 146px;
}

#DDMVertMenu, #DDMVertMenu ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: .7em;
}

#DDMVertMenu a {
	display: block;
	color: #96A014;
	font-size: 1.1em;	
	text-decoration: none;
	padding-left: 1em;
	padding-right: .5em;
	white-space: nowrap;
	line-height: 2.05em;		/* these decide how far below the top level the sub lists start */
	text-transform: uppercase;
}


#DDMVertMenu li.DDMSelectedItem a {
	color: #004f39;
}

#DDMVertMenu a:hover {
	font-size: 1.1em;
	color: #49780A;
	background-color: #BEC837;
}

#DDMVertMenu li { /* all list items */
	white-space: nowrap;
	width: 194px;
}

#DDMVertMenu li ul { /* second-level lists */
	position: absolute;
	width: 110px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	background-color: #BEC837;
	font-size: 1.1em;
	font-weight: normal;
	margin: -2em 0 0 -112px;
	border: 1px solid #AFBC22;
}

#DDMVertMenu li ul li {
	border: none;
	width: 100%;
	background-image: none;
	white-space: normal;
	/*height: 2em;*/
}

#DDMVertMenu li ul li a {
	color: #5C843A;
	text-align: right;
	font-size: .9em;
	font-weight: normal;
	white-space: normal;
	border-right: none;
	text-transform: none;	
}

#DDMVertMenu li ul li a div {
	width: 100%;	/* adjust this to make sublist item witdths fit there containers */
	cursor: default;
}

#DDMVertMenu li ul li a:hover {
	color: #004F39;
	font-size: .9em;
	border-top: none;
	border-bottom: none;
	line-height: 2.05em;
}

#DDMVertMenu 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;
}

#DDMVertMenu li ul ul { /* third-and-above-level lists */
	margin: -2.2em 0 0 -100px;
	font-size: 1em;
}

#DDMVertMenu li:hover ul ul, #DDMVertMenu li:hover ul ul ul, #DDMVertMenu li.DDMhover ul ul, #DDMVertMenu li.DDMhover ul ul ul {
	left: -999em;
}

#DDMVertMenu li:hover ul, #DDMVertMenu li li:hover ul, #DDMVertMenu li li li:hover ul, #DDMVertMenu li.DDMhover ul, #DDMVertMenu li li.DDMhover ul, #DDMVertMenu li li li.DDMhover ul { /* lists nested under hovered list items */
	left: auto;
}








