/* Menu
---------------------------------------------------------------------------------------- */
#menu {
	width: 100%;
	margin-top: 10px;
	margin-left: 35px;
	padding: 0;
	list-style: none;
	/* background: #EFF3E2; */
	/* border-top: 1px solid #CFD8A9;
	border-right: 1px solid #CFD8A9;
	border-bottom: 1px solid #CFD8A9;  */
	font-size: 100%;
	font: bold 12px arial;
	text-align: left;
}
/* Clearfix */
#menu:after {
	content: "&nbsp;";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
#menu li {
	float: left;
	margin: 0;
	padding: 0;
	position: relative;
}
#menu a {
	float: left;
	display: block;
	text-decoration: none;
	color: #000000;
	font-weight: bold;
	/* border-right: 1px solid #FAFBF7;
	border-left: 1px solid #DEE7C2;  */
	padding-top: 7px;
	padding-right: 48px;
	padding-bottom: 7px;
	padding-left: 48px;
}
#menu a:hover {background: #E1E7C9;}
/* The Drop Down: */
#menu .parent a {background: url(graphics/bullet_arrow_down.png) no-repeat right center;}
#menu .activeParent a {
	color: #000000;
	background: #E1E7C9 url(graphics/bullet_arrow_down.png) no-repeat right center;
}
#menu .parent ul {display: none;} /* Hides the dropdown */
#menu .activeParent ul {
	float: left;
	width: 12em; /* The width of the dropdown */
	margin: 0;
	padding: 0;
	position: absolute;
	top: 2.1em; /* You may need to change this if you change font-size or padding on the menu */
	left: 0;
	list-style: none;
	z-index: 1000;
}
#menu .activeParent li {
	float: left;
	margin: 0;
	padding: 0;
}
#menu .activeParent li a {
	float: left;
	width: 12em; /* The width of the dropdown */
	margin: 0;
	padding: 3px 8px;
	color: #333333;
	display: block;
	background: #6699CC;
	font-size: 90%;
	/* border-bottom: 1px solid #CFD8A9;
	border-right: 1px solid #CFD8A9;
	border-left: 1px solid #CFD8A9;  */
}
#menu .activeParent li a:hover {
	background: #E1E7C9;
	color: #333300;
}

