/* Menu
---------------------------------------------------------------------------------------- */



#menu {
/*	width: 732px; */
	margin: 0px;
	padding: 0px;
	list-style: none;
	background: #ffffff;
	border-top: 0px solid #A3A3C1;
	border-right: 0px solid #A3A3C1;
	border-bottom: 0px solid #A3A3C1;
	font-size: 100%;
}
/* 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;
	padding: 0px 0px;
	text-decoration: none;
	color: #486A00;
	font-weight: bold;
	border-right: 0px solid #FAFBF7;
	border-left: 0px solid #DEE7C2;
}
#menu a:hover {background: #666698;}
/* The Drop Down: */
#menu .parent a {background: url(../images/bullet_arrow_down.png) no-repeat right center;}
#menu .activeParent a {
	color: #333333;
	background: #666698 url(../images/bullet_arrow_down.png) no-repeat right center;
}
#menu .parent ul {display: none;} /* Hides the dropdown */
#menu .activeParent ul {
	float: left;
	width: 120px;  /*The width of the dropdown */ 
	margin: 0;
	padding: 0;
	position: absolute;
	top: 35px; /* You may need to change this if you change font-size or padding on the menu */
	left: 00px;
	list-style: none;
	z-index: 1000;
}
#menu .activeParent li {
	float: left;
	margin: 0;
	padding: 0;
}
#menu .activeParent li a {
	float: left;
	width: 120px; /* The width of the dropdown */
	margin: 0;
	padding: 3px 3px;
	color: #666698;
	display: block;
	background: #FFFFFF;
	font-size: 90%;
	border-bottom: 1px solid #A3A3C1;
	border-right: 1px solid #A3A3C1;
	border-left: 1px solid #A3A3C1;
}
#menu .activeParent li a:hover {
	background: #666698;
	color: #ffffff;
}
