/* 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 {
	margin: 0px;
	padding: 0px;
	list-style: none;
	position: absolute;
	right: 20px;
}
.nav a {
	display: block;
	width: auto;
}
.nav li {
	float: left;
	width: auto;
	position: relative;
}
.nav li ul {
	position: absolute;
	left: -999em;
	width: 13em;
	/*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;
	right: 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 Watchman*/

.nav a {
	font-size: 1.2em;
	line-height: 45px;
	padding: 0 1em;
	text-decoration: none;
	color: #4d534a;
}
.nav a:hover {
	text-decoration: none;
}
.nav li {
	background: url(images/nav-divider.jpg) no-repeat;
}
.nav li:hover, .nav li.sfHover {
	background-color: #ebe1c8;
}
.nav ul ul li {
	background-image: none;
	background-color: #d5ccb5;
	border-top: 1px solid #b1953a;
}
.nav ul ul li:hover, .nav ul li.sfHover {
	background-color: #ebe1c8;
}
.nav ul ul li a {
	line-height: normal;
	padding: .2em 1em;
	width: 11em;
	/*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 ul {
	margin: -2em 0 0 -15em;
	z-index:11;
}
.nav ul ul ul li {
	border-left: 1px solid #b1953a;
	border-right: 1px solid #b1953a;
}


