#DDMVertMenu {
	position: absolute;
	z-index: 300;	
	font-size: 1em;
	text-align: left;
	left: 0;
	top: 187px;
	background-color: #4E505C;
}

#DDMVertMenu, #DDMVertMenu ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1.2em;
	font-size: .75em;
}

#DDMVertMenu a {
	display: block;
	color: #ffffff;
	font-size: 1em;	
	height: 1.8em;			/* combined with line-height */
	line-height: 1.8em;		/* these decide how far below the top level the sub lists start */
	text-decoration: none;
	text-align: left;
	padding-left: 5px;
	padding-right: 5px;
	white-space: nowrap;
	font-weight: bold;
	width: 124px;
}

#DDMVertMenu a:hover {
	font-size: 1em;
	color: #FF8500;
}

#DDMVertMenu li { /* all list items */
	float: left;
	height: 1.7em;  /* distance between each item in the sub lists */
	clear: both;
	border-bottom: 1px solid #ffffff;
	background-image: url(images/DDMVertMenutopelementbg.jpg);
	background-repeat: repeat-y;
	background-position: right;
}

#DDMVertMenu li ul { /* second-level lists */
	position: absolute;
	width: 127px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	background-color: #606060;
	border: 1px solid #FF8500;
	font-size: 1em;
	font-weight: normal;
	margin: -2em 0 0 134px;
	padding: 0;
}

#DDMVertMenu li ul li {
	border: none;
	background-image: none;
	padding: 0;
	white-space: normal;
}

#DDMVertMenu li ul li a {
	color: #ffffff;
	text-align: left;
	font-size: .9em;
	font-weight: normal;
	padding: .2em;
	white-space: normal;
	border-right: none;
}

#DDMVertMenu li ul li a:hover {
	background-color: #4E505C;
	color: #FF8500;
	font-size: .9em;
}

#DDMVertMenu li ul ul { /* third-and-above-level lists */
	margin: -1.5em 0 0 12em;
}

#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;
}






