#MENU .menu {
/*	font-size:13px;*/
	margin-left:20px;
	position:relative;
	text-align:left;	
	width:120px;
	z-index:1;
}
/* remove all the bullets, borders and padding from the default list styling */
#MENU .menu ul {
	list-style-type:none;
	margin:0;
	padding:0;
	width:120px;
	z-index:10;	
}
#MENU .menu ul ul {
	width:120px;
}


/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#MENU .menu li {
	float:left;
	position:relative;
	width:120px;
}

#MENU .menu li li{
	float:left;
	position:relative;
	width:130px;
}

/* style the links for the top level */
#MENU .menu a, #MENU .menu a:visited {
/*	background:#999;*/
	color:#fff;
	display:block;
	font-size:14px;
	height:auto;	
/*	line-height:25px;*/
	padding:3px;
	text-decoration:none;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html #MENU .menu a, * html #MENU .menu a:visited {
/*	width:90px;
	w\idth:89px;
*/	width:120px;
	w\idth:119px;

}



/* style the second level background */
/*#MENU .menu ul ul a.drop, #MENU .menu ul ul a.drop:visited {
	background:#ddd url(../../graphics/drop.gif) bottom right no-repeat;
}*/
/* style the second level hover */
/*#MENU .menu ul ul a.drop:hover {
	background:#bbb url(../../graphics/drop.gif) bottom right no-repeat;
}*/
/*#MENU .menu ul ul :hover > a.drop {
	background:#ddd url(../../graphics/drop.gif) bottom right no-repeat;
}*/



/* style the third level background */
#MENU .menu ul ul ul a, #MENU .menu ul ul ul a:visited {
	background:#bbb;
}
/* style the third level hover */
#MENU .menu ul ul ul a:hover {
	background:#ddd;
}



/* hide the sub levels and give them a positon absolute so that they take up no room */
#MENU .menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:0px;
	left:89px;
/*	width:130px;*/
}
/* another hack for IE5.5 */
* html #MENU .menu ul ul {
	top:0px;
	t\op:0px;
}



/* position the third level flyout menu */
#MENU .menu ul ul ul {
	left:110px;
	top:0;
	width:140px;
}
/* position the third level flyout menu for a left flyout */
#MENU .menu ul ul ul.left {
	left:-90px;
}



/* style the table so that it takes no part in the layout - required for IE to work */
#MENU .menu table {
	position:absolute;
	top:0;
	left:0;
}


/* style the second level links */
#MENU .menu ul ul a, #MENU .menu ul ul a:visited {
	background:#ccc;
	color:#000;
	font-size:12px;
	height:auto;
/*	line-height:1em;*/
	padding:4px 5px;
	width:130px; /* yet another hack for IE5.5 */
	height:auto;
	border-bottom:1px none #ccc;
      }

* html #MENU .menu ul ul a {
	width:130px;
	w\idth:129px;
}
/* style the top level hover */
#MENU .menu a:hover, #MENU .menu ul ul a:hover {
	color:#fff;
	background:#aaaaaa;
}
#MENU .menu :hover > a, #MENU .menu ul ul :hover > a {
	color:#fff;
	background:#aaaaaa;
}




/* make the second level visible when hover on first level list OR link */
#MENU .menu ul li:hover ul,  #MENU .menu ul a:hover ul {
	visibility:visible;
}
/* keep the third level hidden when you hover on first level list OR link */
#MENU .menu ul :hover ul ul {
	visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
#MENU .menu ul :hover ul :hover ul {
	visibility:visible;
}
