/* 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: 160px;
}
#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;
}
/*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 XCD*/
#divNav {
	background-color: #222D4C;
	height:40px;
}
#nav{
	float:right;
}
#nav a:link, #nav a:visited {
	color: #FFFFFF;
	text-decoration: none;
	padding: 0px 10px;	
}
#nav a:hover {
	color: #FFA10F;
}
#nav ul a:hover {
	color: #FFFFFF;
}
#nav li {
	font-size: 12px;
	font-weight: bold;
	line-height: 30px;
	background-image: url(../images/navline.gif);
	background-repeat: no-repeat;
	background-position: right top;
}

#nav ul li {
	background-color: #9C620E;
	background-image: none;
	line-height: normal;
	border-top: 1px solid #FFFFFF;
	z-index: 10;
	padding: 6px 0px;
}
#nav ul li:hover, #nav ul li.sfHover {
	background-color: #222D4C;
}
#nav ul a {
	width: 140px;
	/*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: -22px 0 0 160px;
}
#nav ul ul li {
	border-left: 1px solid #FFFFFF;
}

/*Individual Specific Alterations*/
#nav #liClients ul {
	margin-left: -14px;
}
#nav #liFirm ul {
	margin-left: -82px;
}
#nav #liClients ul a, #nav #liFirm ul a {
	width: 110px;
}
#nav #liFirm {
	background-image: none;
}
