/* common styling */
/* set up the overall width of the menu div, the font and the margins */

.menu {
	width:534px;
	margin:0 0 0px 0px;
	position:absolute;
	z-index:100;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.menu ul {
	padding:0; 
	margin:0;
	list-style-type: none;
}
/* float the list so that the items are in a line and their position relative so that the drop down list will appear in the right place underneath each list item */
.menu ul li {
	float:left;
	position:relative;
	background-image:url(images/site/divider.gif);
	background-position: center right;
	background-repeat:no-repeat;
}

.menu ul li.last {
	background-image:url(images/site/spacer.gif);
	background-position: center right;
	background-repeat:no-repeat;
}

.menu ul li.active {
	float:left;
	position:relative;
	color: #FFFFFF;
	text-decoration: underline;
}
/* style the links to be 104px wide by 30px high with a top and right border 1px solid white. Set the background color and the font size. */
.menu ul li a, .menu ul li a:visited {
	display:block;
	text-align:left;
	height:28px;
	line-height:20px;
	padding-left: 18px;
	padding-right: 18px;
	color: #076324;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration:  underline;
}

.menu ul li a.active {
	color: #FFFFFF;
		text-decoration: underline;
}

.menu ul li.last {
}
/* make the dropdown ul invisible */
.menu ul li ul {
display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */

.menu ul li:hover a {
	color: #076324;
	text-decoration: underline;
}

/* make the sub menu ul visible and position it beneath the main menu list item */
.menu ul li:hover ul {
display:block; 
position:absolute; 
left:0px; 
top:28px; 
}

.menu ul li:hover ul li {
width: 185px;

text-align: left;

	margin-left: 10px;
	display: block;
		background:#ffffff; 
	border-left: 1px #076324 solid;
	border-right: 1px #076324 solid;
	border-bottom: 1px #076324 solid;
		border-top: 1px #076324 solid;
	}
	
/* style the background and foreground color of the submenu links */

.menu ul li:hover ul li a {
	height:10px;
	padding: 6px 10px 6px 12px;
	line-height:10px;
	margin-left: -0px;
	display:block;
	color:#3a5e79;
	font-size: 12px;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
}

/* style the background and forground colors of the links on hover */

.menu ul li:hover ul li a:hover {
background:#C1CACF; 
color:#006600;
	text-decoration: none;
}

.menu ul li:hover ul li.active {
background:##C1CACF; 
color:#000000;
	text-decoration: none;

}
