/* Menu
---------------------------------------------------------------------------------------- */



#menu {
	width: 854px;
	margin: 0;
	padding: 0;
	list-style: none;
	background: #ffffff;
	border-top: 0px solid #B7AE94;
	border-right: 0px solid #B7AE94;
	border-bottom: 0px solid #B7AE94;
	font-size: 100%;
}
/* Clearfix */
#menu:after {
	content: "&nbsp;";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
#menu li {
	float: left;
	margin: 0;
	padding: 0;
	}
#menu a {
	float: left;
	display: block;
	padding: 4px 0px;
	text-decoration: none;
	color: #FFFFFF;
	font-weight: bold;
	border-right: 0px solid #FAFBF7;
	border-left: 0px solid #DEE7C2;
}
#menu a:hover {color: #333333;}
/* The Drop Down: */
#menu .parent a {background: url() no-repeat right center;}
#menu .activeParent a {
	color: #333333;
}
#menu .parent ul {display: none;} /* Hides the dropdown */
#menu .activeParent ul {
	float: left;
	clear: left;
	width: 132px; /* The width of the dropdown */
	margin: -1;
	padding: 0;
	position: absolute;
	top: 100px; /* You may need to change this if you change font-size or padding on the menu */
	list-style: none;
	z-index: 1000;
}
#menu .activeParent li {
	float: left;
	margin: 0;
	padding: 0;
}
#menu .activeParent li a {
	float: left;
	width: 132px; /* The width of the dropdown */
	margin: 0;
	padding: 3px 3px;
	color: #333333;
	display: block;
	background: #FFFFFF;
	font-size: 90%;
	border-bottom: 1px solid #B7AE94;
	border-right: 1px solid #B7AE94;
	border-left: 1px solid #B7AE94;
}
#menu .activeParent li a:hover {
	color: #858585;
}
