/* dropdown menus */

#navigation {
	position:relative;
	z-index:3;			/* necessary for IE6 if you want dropdowns  */
	width:100%;
	height:35px;
}

#nav, #nav ul { /* all lists */
	display:relative;
	z-index:5;
	padding: 0;
	margin: 0;
	list-style: none;
	font-family:Georgia, "Times New Roman", Times, serif;
	line-height:1.2;
	font-weight:normal;
	font-size:13px;
	}

#nav li ul { /* second-level lists */
	position: absolute;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border:solid 1px #e788cf ;}

	
	
#nav li li ul { /* third level lists */
	margin: -1.7em 0 0 15.5em;
}
#nav li { /* all list items */
	float: left;
}


#nav li li {		
	clear:both;
	width:auto;
}

#nav a {
	display: block;
	color:#fff;
	text-decoration:none;
	background:#0071b5;
	text-align:left;
	text-transform:none;
	padding:12px 5px;
}

#nav a:hover {
	color:#fff;
	background:#34a4e7;
}

#nav li li a {
	color:#cc3782;
	width:15em;
	padding:0.5em 0.75em;
	text-align:left;
	text-transform:none;
	background:#f1f1f1;
}

#nav li li a:hover {
	color:#cc3782;
	background:#e9dede;
}	

#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 { /* lists nested under hovered list items */
	left: auto;
}

