/*
** menuh.css 
** CSS - horizontal menu with drop down
** Source: http://sperling.com/examples/menuh/
** Author: Steve TANGUE
** Date: 23.01.08
*/



#menuh-container
{
	position: absolute;		
	top: 1em;
	left: 1em;
}

#menuh
{
	width: 954px;
	position: relative;
	z-index: 1;
	margin: 0px auto 0px auto;
	height: 33px;
	line-height: normal;
	background-color: #000000;
	border: 1px solid white;
	background-position: top left;
	background-repeat: repeat-x;
	text-align: left;
	background-image: url('/img/main_menu/menubar_bg.jpg');
}

#menuh a
{
	text-align: center;
	display:block;
	white-space:nowrap;
	margin:0;
	padding: 8px;
	text-decoration:none;

}
	
#menuh a:visited	/* menu at rest */
{
	/*color: white;
	text-decoration:none;
	background-color: #000;*/
}
	
#menuh a:hover	/* menu at mouse-over  */
{
	color: white;
	text-decoration: underline;
}	

a#home, a#thecourse, a#demonstration, a#contactus, /*a#pricing,*/ a#dealernetwork/*#menuh a.top_parent,  attaches down-arrow to all top-parents */
{
	background-repeat: no-repeat;
	background-position: center;
}

a#login
{
	background-image: url('/img/main_menu/login_button_bg.jpg');
	background-repeat: no-repeat;
	background-position: center;
	width: 124px;
}

a:hover#login, a#login.selected
{
	background-image: url('/img/main_menu/login_button_over.jpg');
	background-repeat: no-repeat;
	background-position: center;
}





a:hover#home, a:hover#thecourse, a:hover#demonstration, a:hover#contactus, /*a:hover#pricing, */a:hover#dealernetwork/* top_parent over state */
{
	background-repeat: no-repeat;
	background-position: center;
	/*text-decoration:none;*/
}

a#home.selected, a#thecourse.selected, a#demonstration.selected, a#contactus.selected,/* a#pricing.selected, */a#dealernetwork.selected /* top_parent over state */
{
	background-repeat: no-repeat;
	background-position: center;
	/*text-decoration:none;*/
}


#menuh a#home a.selected  
{
	background-repeat: no-repeat;
	background-position: center;
}	
	
		


#menuh ul
{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	width: 116px;
	opacity: .9;
	/*filter: alpha(opacity=90);*/
}

ul#login_ul
{
	width: 136px;
}

#menuh li
{
	position:relative;
    min-height: 1px; 	/* for IE7 */
    vertical-align: bottom; /* for IE7 */
}



/* End CSS Drop Down Menu */
