/*
** menuh.css 
** CSS - horizontal menu with drop down
** Source: http://sperling.com/examples/menuh/
** Author: Steve TANGUE
** Date: 23.01.08
*/


#main_menu
{
	width: 100%;
	height: 33px;
	background-image: url('../img/menubar_bg.jpg');
	background-repeat: repeat-x;
}



#menuh
{
	width: 990px;
	position: relative;
	z-index: 1;
	margin: 0 auto;
	height: 33px;
	line-height: normal;
	background-image: url('../img/menubar_bg.jpg');
	background-position: top left;
	background-repeat: repeat-x;
	text-align: left;
}


* html #menuh
{
	width: 1022px;
}

#menuh a
{
	text-align: center;
	display:block;
	white-space:nowrap;
	margin:1px 0 0 0;
	height: 22px;
	padding: 9px 8px 0px 8px;
	/*background-image: url('../img/menubar_bg.jpg');
	background-repeat: repeat-x;
	background-color: #DDEEFF;*/
	text-decoration:none;
	color: #000;
	font-size: 0.9em;
}


#menuh a:hover	/* menu at mouse-over  */
{
	color: #000000;
	text-decoration: underline;
}	

a.selected
{
	font-weight: bold;
}

#menuh ul ul li a
{
	border: 0px solid red;
	background-color: #f4f4f4;
	margin:0;
}

#menuh ul ul li a:hover
{
	
	background-color: #CEDEF4;
}

#menuh ul
{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	/*width:9em;*/	/* width of all menu boxes */
	/*width: 136px;*/
	opacity: .9;
	/*filter: alpha(opacity=90);*/
}

#menuh li
{
	position:relative;
    min-height: 1px; 	/* for IE7 */
    vertical-align: bottom; /* for IE7 */
	width: 100px;
}

#menuh ul ul
{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	padding: 1em;
	margin:-1em 0 0 -1em;
}

#menuh ul ul ul
{
	top:0;
	left:100%;
}

div#menuh li:hover
{
	cursor:pointer;
	z-index:100;
}

div#menuh li:hover ul ul,
div#menuh li li:hover ul ul,
div#menuh li li li:hover ul ul,
div#menuh li li li li:hover ul ul
{display:none;}

div#menuh li:hover ul,
div#menuh li li:hover ul,
div#menuh li li li:hover ul,
div#menuh li li li li:hover ul
{display:block;}


/* end of file */







