/* CSS Document */
/*Code from Suckerfish: http://www.htmldog.com/articles/suckerfish/dropdowns/*/
/*The js document navhover.js is required to make this code function in IE*/

/*CSS for the side vertical menu*/


/*Structural Elements for CSS Menu*/
#nav2, #nav2 ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	
	float: left;
	width: 175px;
}
#nav2 a {
	display: block;
	/*width: auto;*/
	
	/*width: 175px;*/
}
#nav2 li {
	position: relative;
	
	float: left;
	width: 175px;
	/*line-height: 1.25em;
	margin-bottom: -1px;*/
}
#nav2 li ul {
	position: absolute;
	left: -999em;
	margin-left: 173px;
	margin-top: -1.75em;
	
	/*width: 12em;
	This width is set specifically for this site. It can be changed for future sites, but it must be present.*/
}
#nav2 li:hover ul ul, #nav2 li.sfHover ul ul {
	left: -999em;
}
#nav2 li:hover ul, #nav2 li li:hover ul, #nav2 li.sfHover ul, #nav2 li li.sfHover ul {
	left: auto;
}
/*This item solves the sticking issue in ie7 - from http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7*/
#nav2 li:hover, #nav2 li.sfHover {  
    position: static;  
}  


/*Design Elements specific to this site*/

/*First Level*/
#nav2 a {
	color: #315a2d;
	text-decoration: none;
	font-weight: normal;
	padding: 3px;
	/*margin-left: 22px;*/
	border-bottom: solid 1px #d5d9c6;
}
#nav2 a:hover {
	background-color: #bec5ac;
}

/*Second Level*/
#nav2 li ul {
	border: solid 1px #adb49d;
	z-index: 3;
	width: 11.5em;
}
#nav2 li ul li {
	background-image: none;
	background-color: #dbe2cb;
	width: 11.5em;
}
#nav2 li ul li:hover, #nav2 li ul li.sfHover {
	background-image: none;
	background-color: #bec5ac;
}

#nav2 li ul a {
	padding: .2em 1em;
	/*width: 10em;
	This width is for proper display in IE6. Width + padding here must match the width above in nav li ul.*/
}

/*Design  and Layout for 3rd level*/ 
#nav2 li ul ul {
	margin: -1.8em 0 0 11.5em;
}

