#dmenu {
	padding-top: 5px;
	padding-bottom: 5px;
}

#dmenu ul, #dmenu li, #dmenu li a {
	/* padding = affects both static & dropdown menus (set to 0px if not needed)*/
	padding-right: 0.9em;
	text-decoration: none;
	color: white;
	font-weight: bold;
}

#dmenu li a:hover {
	/* Controls the style of the hover on ALL links */
	text-decoration: underline;
}

#dmenu li ul {
	/* Controls the style of the dropdown box */
	/* Sets the x & y of where the dropdown appears */
	top: 15px;
	left: 0px;
	width: 120px;
	margin: 0px;
	padding: 0px;
	border: 1px silver solid;
	background-color: #D35E16;
}

#dmenu li ul li {
	/* Controls the style of the link box within the dropdown */
	width: 100%;
	margin: 0px;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 2px;
	padding-bottom: 2px;
	font-size: 8pt;
	color: white;
	border-bottom: 1px solid white;
}

#dmenu li ul li a {
	/* Controls the style of the actual links in the dropdown */
	font-weight: normal;
}

/* DO NOT CHANGE BELOW */
#dmenu ul {
	list-style: none;
	display: inline;
	margin: 0px;
}

#dmenu ul li {
	position: relative;
}

#dmenu li ul {
	display: none;
	position: absolute;
}

#dmenu li {
	margin: 0px;
	float: left;
}

#dmenu li ul li a {
	/* Make sure limk is the whole width of the box */
	width: 100%;
}
/* DO NOT CHANGE ABOVE */
