/* Defines the styles for the main (top) drop down menu */

#dd {
	margin:0px;
	padding:0px;
} 
#dd li {
	margin: 0;
	text-transform:capitalize;
	list-style: none;
	float: left;
}
#dd li a.menu {
	display: block;
	text-align: center;
	padding-left:10px;
	padding-right:10px;
	color: #FFF;
	text-decoration: none;
}
#dd li a.menu:hover {
	color: #D7C7C7;
	text-decoration:underline;
}
.submenu {
	/* CSS3 standard */
	opacity:0.90;
	/* for Mozilla */
	-moz-opacity:0.90; 
	width:200px;
	margin-left:7px;
	margin-top:0px;
	background-color: #D7C7C7;
	border: 1px solid #333;
	visibility: hidden;
	position: absolute;
	z-index: 3;
}
.submenu a {
	display: block;
	text-align: left;
	padding:0px 5px;
	color: #333;
	text-decoration: none;
}
.submenu a:hover {
	color: #FFF;
	text-decoration:underline;
	background-color:#8B6B6B;
	opacity:1;
	-moz-opacity:100;
}