/*
	Based on the "Son of Suckerfish" Dropdowns implementation
	by Patrick Griffiths and Dan Webb.
	
	http://www.htmldog.com/articles/suckerfish/dropdowns/
*/

#main_nav, #main_nav ul 
{
	padding: 0px;
	margin: 0px;
	list-style: none;
	line-height: 150%;
}

#main_nav img
{
	/* Toggle this from 1px/solid to 0px/none to hide the guide borders in the nav menu */
	border: 0px solid #BBB;
	display: block;
	height: 37px;
}

#main_nav a 
{
	display: block;
	text-decoration: none;
}

#main_nav li 
{
	float: left;
}		

#main_nav li ul 
{
	position: absolute;
	width: 106px;
	left: -999em;
	
	/* This is where you style the drop down menu's, including font, color and spacing */
	
	text-indent: 7px;
	background-color: #996600;
	color:#000000;
	border: 1px solid #320000;
		
}
	
#main_nav li ul li:hover a, #main_nav li ul li.sfhover a
{
	/* This is where you style the 'on mouse over' look of the individual drop down elements. */
	background-color: #996600;
	color: #660000;
	text-decoration: none;
}	

#main_nav li:hover ul, #main_nav li.sfhover ul 
{
	left: auto;
}		

/* 
	Apparently this fixes a bug in IE7 
	See: http://www.builtfromsource.com/2006/10/23/a-fix-for-suckerfish-dropdowns-in-ie-7/
*/
#main_nav li:hover, #main_nav li.sfhover
{
	position: static;
}
