/* CSS Document */
#nav, #nav ul { /* all lists */
		padding: 0;
		margin: 0;
		list-style: none;
		float : left;
		width : 100%;
	}
	
	#nav li { /* all list items */
		position : relative;
		float : left;
		line-height : 1.25em;
		border-bottom : 1px solid white;
		width: 184px;
	}
	
	#nav li ul { /* second-level lists */
		position : absolute;
		left: -999em;
		margin-left : 191px;
		margin-top : -28px;
	}
	

	#nav li a {
		font-family:Arial, "Trebuchet MS";
		font-size:16px;
		width: 186px;
		w\idth : 9.65em;
		display : block;
		color : white;
		font-weight : bold;
		text-decoration : none;
		background-color:#ea6b48;		
		padding:4px 20px 4px 10px;
		border-right:6px solid #f5b57f;

	}
#nav li a.toplink{
	border-left:6px solid #f5b57f;		
	font-family:Arial, "Trebuchet MS";
	font-size:16px;
	background-image:url(../images/nav-arrow-white.gif);
	background-position:right;
	background-repeat:no-repeat;
	border-right:0px;
}
#nav li a.toplink:hover{
	border-left:6px solid #f5b57f;		
	font-family:Arial, "Trebuchet MS";
	font-size:16px;
	background-image:url(../images/nav-arrow-white-on.gif);
	background-position:right;
	background-repeat:no-repeat;
	border-right:0px;
}
	
	#nav li a:hover {
		color : black;
		background-color:#ef9076;

	}
	

	
	#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;
	}	

