#nav, #nav ul { 
	float: left;
	list-style: none; 
	line-height: 1.5;
	margin: 0;
	padding: 0;
	background-color: #bc8a3a; /* Hexidecimal code for Button Color */
} 

#nav a { 
	display: block;
	text-align: center;
	text-decoration: none; 
	font-family: arial; /* Font face */
	font-size: 12px; /* 1px = 0.1em, so font size 12 would be 1.2em */
	font-weight: bold;
	color: #000000; /* Hexidecimal code for Font Color */
	padding: 1px 0px;
} 

#nav a:hover {
	color: #ffffff;
}

#nav li { 
	float: left; 
	width: 120px; /* Width of the button, each width below should match this */
}

#nav li ul li a {
	display: block;
	border : 1px solid black; /* This can be deleted if no border is needed */
}	


#nav li ul { 
	position: absolute; 
	width: 120px; 
	left: -999em; 
} 

#nav li ul li { 
	width:120px; 
}

#nav li ul ul { 
	margin: -20px 0 0 120px; 
} 


#nav li:hover, #nav li.sfhover {
	background: #a1d3a0; /* The last number should match the width */
}

#nav li:hover ul { 
	left: auto; 
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul 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{ 
	left: auto; 
}

#nav li ul li a{
	text-align: left;
	text-indent: 3px;  
}

#nav li ul li a.parent {
	background: url(rightarrow.gif) center right no-repeat;
}
