/* CSS Document */
#navigation
{
	height: 67px;
	padding: 0px 78px;
}

#navigation img
{
	float: left;
}

	#navigation ul
	{
		margin: 0;
		padding: 0;
		float: left;
	}
	
	#navigation li
	{
		float: left;
		list-style: none;
	} 
	
	#navigation li a
	{
		width: 90px;
		height: 53px;
		background: url(../grfx/navigation/bg_nav_off.png) repeat-x;
		font-size: 1.08em;
		float: left;
		color: #FFFFFF;
		text-align: center;
		text-decoration: none;
		padding: 20px 4px 0px 4px;
	}

	#navigation li a:hover
	{
		background: url(../grfx/navigation/bg_nav_hover.png) repeat-x;
	}
	
	#navigation li#current a
	{
		background: url(../grfx/navigation/bg_nav_current.png) repeat-x;
	}	
	
/*drop downs*/ 

#navigation li ul  { 
	position: absolute;
	z-index: 20;
	margin: 0px;
	padding: 0px;
	margin-top: 67px;
	left: -999em;
	height: auto;
	background: none;
}

#navigation li ul li {
	margin: 0;
	padding: 0;
	clear: both;
	height: 30px;
}

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

*:first-child+html #navigation li:hover, 
*:first-child+html #navigation li li:hover, 
*:first-child+html #navigation li.sfhover, 
*:first-child+html #navigation li li.sfhover { 
	left: auto;
	position: static;
}

*:first-child+html #navigation li ul
{	
	margin-left: -98px;
}

* html #navigation li ul
{	
	margin-left: -98px;
}

#navigation li ul li a {	
	width: 212px !important;
	height: 25px;
	display: block !important;
	font-weight: normal;
	color: #FFFFFF;
	background: none;
	background-color: #3c3c3c;
	text-decoration: none;
	border-top: 1px solid #1e1e1e;
	padding-top: 5px;
}

#navigation li ul li a:hover {
	color: #FFFFFF;
	background: #1e1e1e;
	height: 25px;
}

