#dmenu ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}
#dmenu li { /* all list items */
	float: left;
	position: relative;
	width: 10em;
	color: BLUE;
	list-style: none;
}
#dmenu li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
}
#dmenu li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}
#dmenu li:hover ul, #dmenu li.over ul { /* lists nested under hovered list items */
	display: block;
}
#dmenu ul li a {
	DISPLAY: block; TEXT-ALIGN: left; padding: 1px 5px;
	border: 1px BLUE solid; text-decoration:none;
	background-color: WHITE;
	color: BLUE;
	font-weight: normal;
	width: 200px;
}
#dmenu ul li a:hover {
	padding: 1px 5px;
	border: 1px BLUE solid;
	background-color: BLUE;
	color: WHITE;
	width: 200px;
}
#content {
	clear: left;
}
