#nav ul { /* all lists */
	padding: 0;
	margin: 0;
	margin-left:10px;
	list-style: none;
	line-height: 1.0em;
	background: #CCCCCC;
	text-transform:uppercase;
}

#nav ul a {
	display: block;
	width: 270px;
	text-decoration: none;
	color:#000000;
	padding: 4px 0 4px 20px;
	margin-left:20px;
	background-color:#CCCCCC;
}

#nav .daddy {
	background-image:url(/images/rightarrow2.gif);
	background-position: 4px;
	background-repeat:no-repeat;
}

#nav li { /* all list items */
	float: left;
	padding: 0;
	width: 300px; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	list-style: none;
	height:auto;
	width: 300px;
	w\idth: 300px;
	padding:10px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	font-weight: normal;
	border-width: 0;
	margin: 0;
	background-color:#CCCCCC;
	text-align:left;
}
#nav li ul a {
	border:0;
	border-bottom:1px solid #ffffff;
	width:300px;
	margin:0;
	padding:4px
}
#nav li ul ul { /* third-and-above-level lists */
	margin: -20px 0 0 300px;
}
#nav li li a, #nav li li li a  {
	font-size:90%;
	color:#000000;

}
#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;
}
#nav li li a:hover, #nav li li.sfhover, #nav li li li a:hover, #nav li li li.sfhover {
	background-color:#FFB20E;
	width:300px;
	color:#FFFFFF;
}


 /* *** Float containers fix: *** */ 
.clearfix:after {
 content: "."; 
 display: block; 
 height: 0; 
 clear: both; 
 visibility: hidden;
 }
 
.clearfix{display: inline-table;}

/* Hides from IE-mac \*/
* html .clearfix{height: 1%;}
.clearfix{display: block;}
/* End hide from IE-mac */