#dmenu ul, #dmenu li, #dmenu li a {
	display: inline;
	list-style: none;
	margin: 0px;

	/* width = width of menu; padding = affects both static & dropdown menus (set to 0px if not needed)*/
	width: 150px;
	padding-bottom: 0px;
	text-decoration: none;
	font-weight: bold;
}

#dmenu li ul {
	display: none;
	position: absolute;

	/* Sets the x & y of where the dropdown appears */
	margin-left: 150px;
	margin-top: -12px;
	background-color: #E6E5ED;
	border: 1px silver solid;
}

#dmenu li ul a {
	/* Controls the style of the dropdown */
	/* border: 3px outset threedface; */
	margin: 0px;
	padding: 1px;
}

#dmenu li a:hover {
	color: red;
}
