.menu {
	width:990px;
	position:relative;
	font-size: 86%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	height: 30px;
	padding-top: 10px;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	border-radius: 25px;
}
/* hack to correct IE5.5 faulty box model */
* html .menu {
	width:990px;
	w\idth:990px;
	margin-right: auto;
	margin-left: auto;
	
}
/* 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 li {
	float:left;
	width:106px;
	position:relative;
	margin-right: 3px;
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	text-decoration:none;
	width:106px;
	height:32px;
	line-height:32px;
	font-weight: bold;
	color: #000000;
	background-color: #D7E6E1;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0px 1px 5px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 1px 5px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 1px 5px rgba(50, 50, 50, 0.75);
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width:106px;
	w\idth:106px;
}
/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background:#D7E6E1;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
	background:#D7E6E1;
	color: #000000;	
}
.menu ul ul :hover > a.drop {
	background:#D7E6E1;
	color: #000000;	
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background:#85a735;
	
}
/* style the third level hover */
.menu ul ul ul a:hover {
background:#A9C54B; 
}
/* 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:32px;
	left:0;
}
/* another hack for IE5.5 */
* html .menu ul ul {top:28px;t\op:28px; }

/* position the third level flyout menu */
.menu ul ul ul{left:138px; top:5px; width:140px; }

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
	left:-138px;
}

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

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background:#D7E6E1;
	width:145px;
	height:32px;
	line-height:32px;
	-webkit-box-shadow: 0px 1px 5px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 1px 5px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 1px 5px rgba(50, 50, 50, 0.75);
}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {width:145px;w\idth:145px;}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
	background:#ABCBC0;
	text-decoration: none;
	color: #FFFFFF;
}
.menu :hover > a, .menu ul ul :hover > a {
	background:#ABCBC0;
	
}

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

