#menu {
	border-left: 1px solid #CCC;
	width: 800px;
	color: #0072BB;
	display: table;
	margin: 5px 0;
	font-size: 10px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}

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

/* hide the sub levels and give them a positon absolute so that they take up no room */
#menu ul ul {
	/*width: 250px;*/
	border-left: 1px solid #CCC;
	visibility: hidden;
	position: absolute;
	top: 25px;
	left: -1px; 
	/*width: 210px;*/
}

/* 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;
	color: #0072BB;
	text-transform: uppercase;
	min-width: 199px;
	border-bottom: 1px solid #CCC;
	border-right: 1px solid #CCC;
}

* html #menu li { width: 126px; } /* IE Min-Height Hack */

/* style the links for the top level */
#menu a, #menu a:visited {
	display: block;
	text-decoration: none; 
	color: #041FAA;
	min-height: 18px;
    line-height: 20px;
	padding: 2px 10px;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html #menu a, * html #menu a:visited {
	/*width: 130px;
	w\idth: 104px;*/
	height: 18px;
}

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

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

/* style the second level links */
#menu ul ul a, #menu ul ul a:visited {
	background: #FFF; 
	color: #041FAA;
	height: 18px;
      line-height: 20px;
	padding: 2px 10px;
	width: 179px;
	opacity: 0.9;
	-moz-opacity: 0.9;
}

/* yet another hack for IE5.5 */
* html #menu ul ul a{
	width: 179px;
	w\idth: 179px;
}

/* style the top level hover */
#menu a:hover{
	color: #0072BB; 
	opacity: 1.0;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	-moz-opacity: 1.0;
}

#menu ul ul a:hover{
	color: #0072BB; 
	opacity: 1.0;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	-moz-opacity: 1.0;
}

/* 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;
	opacity: 1.0;
	filter: alpha(opacity=100); 
	-moz-opacity: 1.0;
}