/* -------------------------------------
	M E N U
--------------------------------------*/
#menu
{
	font-family: Verdana;
	font-size: 11px;
	float: left;
	position: relative;
	position/**/:/**/absolute;
	z-index: 1000;
	white-space: nowrap;
}
/* -------------------------------------
	First level items
--------------------------------------*/
#menu ul 
{
	margin: 0;
	padding: 0;
	list-style: none;
}
#menu li 
{
	display: inline;
	float: left;
	position: relative;
}
#menu ul li a 
{
	display: inline;
	text-decoration: none;
	color: #717171;
	font-weight:bold;
	padding: 2px 10px 2px 10px;
	border-left: 1px solid #717171;
	height: 12px !important;
	height: 16px;
	height/**/:/**/12px;
	float: left;
	cursor: pointer;
	_cursor: hand;
}

#menu ul li a:hover
{ 
	_border-bottom: solid 4px #FF8900;
	border-bottom/**/:/**/0px none;
} 
.over
{
	_border-bottom: solid 4px #FF8900;
}
#menu ul li:hover
{ 
	border-bottom: solid 4px #FF8900;
}

/* -------------------------------------
	Second level items
--------------------------------------*/
#menu li ul 
{
	position: absolute;
	text-decoration: none;
	top: 20px;
	left: 0px;
    border: solid 1px white;
	border-top : 0px solid Transparent;
	background-color : #79A4CE;
    padding-bottom: 10px;
	filter : Alpha(Opacity=90);
	width: 180px;
	overflow: hidden;
	display: none;
}
#menu li ul a
{
	width: 180px;
	border: 0px none;
	text-decoration: none;
	padding-left: 2px;
	color: White
} 
#menu li ul a:hover 
{ 
	background-color: #395F89; 
	text-decoration: none;
	border: 0px none;
	color: white
} 
#menu li ul li:hover
{
	border: 0px none;
}

/* Holly Hack. IE Requirement \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

#menu li:hover ul, #menu li.over ul { display: block;} /* The magic */