/* CSS Document */
/* Nav container */
a{
	outline:none;
}

a:link {
	color:#666666;
	text-decoration:none;	
}
a:visited {
	color:#666666;
	text-decoration:none;
}
a:hover {
	color:#c3c18f;
	text-decoration:underline;	
}
a:active {
	color:#666666;
	text-decoration:none;	
}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	float : left;
	width : 125px;
}

#nav li { /* all list items */
	position : relative;
	float : left;
	margin-bottom : 2px;
	width: 125px;
}

#nav li ul { /* second-level lists */
	position : absolute;
	left: -999em;
	margin-left : 125px;
	margin-top : -62px;
}


#nav li a {
	display : block;
	font-weight : bold;
	text-decoration : none;
	padding-left: 14px;
	background-image: url(../Images/navIcon.gif);
	background-repeat: no-repeat;
	background-position: left center;
}

#nav li a:hover {
	color : #c4c292;
	padding-left: 14px;
	background-image: url(../Images/navIconOver.gif);
	background-repeat: no-repeat;
	background-position: left center;	
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}


/* Case study nav items */
#navCS, #navCS ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	float : left;
	width : 290px;
}
#navCS li { /* all list items */
	position : relative;
	float : left;
	margin-bottom : 2px;
	width: 290px;
	border: 1px none #ffffff;
}
#navCS li ul { /* second-level lists */
	position : absolute;
	left: -999em;
	margin-top : -46px;
}


#navCS li a {
	display : block;
	font-weight : bold;
	text-decoration : none;
	padding-left: 14px;
	background-image: url(../Images/navIcon.gif);
	background-repeat: no-repeat;
	background-position: left center;
}

#navCS li a:hover {
	color : #c4c292;
	padding-left: 14px;
	background-image: url(../Images/navIconOver.gif);
	background-repeat: no-repeat;
	background-position: left center;	
}

#navCS li:hover ul ul, #navCS li.sfhover ul ul {
	left: -999em;
}

#navCSli:hover ul, #navCS li li:hover ul, #navCS li li li:hover ul, #navCS li.sfhover ul, #navCS li li.sfhover ul, #navCS li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
