/* 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 IE6*/

/*Structural Elements for CSS Menu*/
#nav ul, #nav {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
#nav a {
	display: block;
	width: auto;
}
#nav li {
	float: left;
	width: auto;
	position: relative;
}
#nav li ul {
	position: absolute;
	left: -999em;
	width: 12em;
	/*This width is set specifically for this site. It can be changed for future sites, but it must be present.*/
}
#nav li:hover ul ul, #nav li.sfHover ul ul {
	left: -999em;
}
#nav li:hover ul, #nav li li:hover ul, #nav li.sfHover ul, #nav li li.sfHover ul {
	left: auto;
	z-index: 10;
}

/*This item solves the sticking issue in ie7 - from http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7*/
#nav li:hover, #nav li.sfHover {  
    position: static;  
}  

/*Design Elements Specific to Greenville*/
#nav li {
	background: url(../images/layout/nav-div.gif) no-repeat;
	margin-bottom: 0;
}
#nav a {
	font-weight: bold;
	text-decoration: none;
	padding: 0 0.7em 7px;
	color: #86878a;
}
#nav a:hover {
	color: #8cc63f;
}
#nav li.homelink {
	background-image: none;
}
#nav li.homelink a {
	padding-left: 0;
}

/*Design and Layout for 2nd Level*/
#nav ul li {
	background-image: none;
	background-color: #e5e5e5;
	border-top: 1px solid #cccdcf;
	z-index: 10;
}
#nav ul a {
	padding: 0.1em 0.7em;
	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*/ 
#nav ul ul {
	margin: -1.7em 0 0 15em;
}
#nav ul ul li {
	border-left: 1px solid #5161ac;
}

