
.menu {
	/*position:relative;*/
	z-index:80;
}
	
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li { float:left; position:relative; text-align:left;}


/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {width:164px; w\idth:153px;}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:px !important;
	top:51px;
	left:0;
	z-index:2000;
}

.menu ul ul {
	height:auto ! important;
	background:#1261a7;
	border:2px solid #fff;
	border-top:2px solid #dbdbdb;
	border-bottom:1px solid #fff;
}



/* another hack for IE5.5 */
* html .menu ul ul {
	top:51px;
	t\op:51px;
}


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

.menu ul ul li{
    margin:0 ! important;
	padding:0 ! important;
	height:auto ! important;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
    display:block;
	color:#fff;
	width:144px;
	height:auto ! important;
	padding:10px;
	border-bottom:1px solid #fff;
}

.menu ul ul a:hover, .menu ul ul a:active {
	background:#768f47;
}



/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {width:175px;w\idth:153px;}


/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul{visibility:visible;}

/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{visibility:hidden;}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{visibility:visible;}

	

