.menu {
	width: 690px;
	height: 35px;
	position:relative;
	z-index:100;
	font: bold 12px Arial, Helvetica, sans-serif;
	padding: 0px 0px;
	text-align:left;
	
	}

/* hack to correct IE5.5 faulty box model */

* html .menu {

	}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	
	}
.menu ul ul {

	}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu ul li {
	float:left;
	position:relative;
	padding: 0px 1px 0px 0px;
	}
/* style the links for the top level */
.menu ul li a, .menu ul li a:visited {
	display:block;
	font-size:12px;
	text-decoration:none;
	color:#CCCCCC;
	padding: 12px 12px 12px 12px;
	font-weight:bold;
	text-transform: uppercase;

	}
	
.menu ul li a:active {

	color: #59240f;


	}

/* style the third level background */
.menu ul ul li a, .menu ul ul li a:visited {
	background:#d0d0d0;
	border-bottom: 1px solid #b7b7b7;
	border-top: 1px solid #EEEEEE;
	text-transform: none;
	padding: 7px 0px 7px 10px;
	width: 170px;
	color: #59240f;
	opacity: 1;
filter: alpha(opacity=100);
font-size: 11px;
	}
/* style the third level hover */
.menu ul ul li a:hover {
	background:#e2e2e2;
	color: #111;
	}


/* 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:39px;
	left:0;
	width:180px;
	font-size: 12px;
	}
	
.menu ul ul li {
	background: none;
	}
/* another hack for IE5.5 */
* html .menu ul ul {
	top:39px;
	t\op:39px;
	}

/* 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;
	}
	



/* style the top level hover */
.menu a:hover, .menu ul li a:hover{color:#770002; background: #d0d0d0;}
.menu :hover > a, .menu ul li :hover > a {color:#770002; background: #d0d0d0;}

/* 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;}


