#dmenu ul, #dmenu li, #dmenu li a {
	/* padding = affects both static & dropdown menus (set to 0px if not needed)*/
	text-decoration: none;
	color: black;
}

#dmenu li a:hover {
	/* Controls the style of the hover on ALL links */
	color: blue;
}

#dmenu li ul {
	/* Controls the style of the dropdown box */
	width: 200px;
	border: 1px solid;
	border-color: ThreedHighlight ThreeDDarkShadow ThreeDDarkShadow ThreedHighlight;
	background-color:	ThreeDFace;
}

#dmenu li ul li {
	/* Controls the style of the link box within the dropdown */
	border-bottom: 1px solid Gray; /* Menu item seperator */
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 2px;
	padding-bottom: 2px;
}

#dmenu li ul li a {
	/* Controls the style of the actual links in the dropdown */
	font-weight: normal;
	font-size: 8pt;
	color: black;
}

/* DO NOT CHANGE BELOW */
#dmenu ul {
	list-style: none;
	display: inline;
	margin: 0px;
}

#dmenu ul li {
	position: relative;
	padding-right: 1em;
}

#dmenu li ul {
	display: none;
	position: absolute;
	top: 12px;
	left: 0px;
	margin: 0px;
	padding: 0px;
}

#dmenu li {
	margin: 0px;
	float: left;
}

#dmenu li ul li {
	/* Controls the style of the link box within the dropdown */
	width: 100%;
}

#dmenu li ul li a {
	/* Make sure limk is the whole width of the box */
	width: 100%;
}
/* DO NOT CHANGE ABOVE */
