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


/*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: 15em;
	/*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 CFAN*/

#divNav {
	background: #7f928d url(../images/nav-bg.gif) repeat-x;
	height: 25px;
	padding-left: 20px;
	min-height: 25px;
}
#nav a {
	color: #006568;
	font-weight: bold;
	text-decoration: none;
	line-height: 25px;
	padding: 0 .6em;
	background: url(../images/nav-div.gif) no-repeat;
}
#nav a.first {
	background: url(none);
}
#nav li:hover, #nav li.sfHover {
	background: url(../images/nav-bg-ro.gif) repeat-x;
}
#nav li {
	margin-bottom: 0;
}

/*Design and Layout for 2nd level*/
#nav ul li {
	color: #ffffff;
	background-color: #bbc8c5;
	border-top: 1px solid #006568;
	z-index: 10;
}
#nav ul a {
	background-image: none;
	padding: 0 1em;
	width: 13em;
	/*This width is for proper display in IE6. Width + padding here must match the width above in nav li ul.*/
}
#nav li ul a:hover {
	background-image: none;
	background-color: #9daea9;
}

/*Design  and Layout for 3rd level*/ 
#nav li ul ul {
	margin: -1.73em 0 0 14.9em;
	border-bottom: 1px solid #006568;
}
#nav li ul ul li {
	border-left: 1px solid #006568;
	border-right: 1px solid #006568;
}
