/* 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:11em;
	/*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 Communicycle*/

#divNav {
	background: #4d2b1d url(../images/layout/nav-bg.gif) repeat-x;
	zoom: 1;
}
#nav {
	/*This width is necessary in order to center the nav. If the nav text changes, the width will need to be changed accordingly.*/
	width: 60em;
	margin: 0 auto;
	max-width: 800px;
	zoom: 1;
}
#nav a {
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
	padding: 0em 1em;
	font-size: 1.1em;
	line-height: 1.3em;
}
#nav a:hover {
	color: #ea7f1e;
}
#nav li {
	background: url(../images/layout/nav-div.gif) no-repeat left center;
}
#nav li.first {
	background-image: none;
}

/*Design and Layout for 2nd Level*/
#nav ul {
	border-bottom: 1px solid #86cdcc;
	padding-top: .3em;
}
#nav ul li {
	/*float: none;*/
	background-color: #4d2b1d;
	background-image: none;
	border-top: 1px solid #86cdcc;
	border-left: 1px solid #86cdcc;
	border-right: 1px solid #86cdcc;
}
#nav ul a {
	padding: .2em 1em;
	width: 9em;
	/*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: -2.4em 0 0 11em;
}

