.menu
{
	width:745px;
	height:32px;
	position:relative;
	z-index:100;
	font-family:arial, sans-serif;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 1px; 
}


/* hack to correct IE5.5 faulty box model */
* html .menu
{
	width:746px;
	w\idth:745px;
}


/* 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
{
	width:149px;
}


/* 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;
	white-space: nowrap;
	overflow: show;
	_width: 0px; /* IE 5.5 and 6 hack */
}

.menu ul ul li
{
	white-space: normal;
}


/* style the links for the top level */
.menu a, .menu a:visited, .menu .anchor
{
	display:block;
	font-size:12px;
	text-decoration:none;
	color: #366eab;
	height: 26px;
	padding-left:8px;
	padding-right: 8px;
	line-height:27px;
	font-weight:bold;
}



/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited
{
}


 
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited
{
	background: #bac3e0;
	width: 200px;
}


/* style the third level hover */
.menu ul ul ul a:hover
{
	width: 200px;
	background: #fff;
}


 
 
/* 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: auto;
	top:26px;
	left:0;
	width:150px;
	border-top: 2px solid #004c97;
	border-bottom: 2px solid #004c97;
	border-right: 2px solid #004c97;
	border-left: 2px solid #004c97;
	border-width: 2px;
}

*html .menu ul ul
{
	margin-top: 0px;
	magrin-bottom: 0px;
}

* html .menu ul ul
{
	visibility:hidden;
	position:absolute;
	background: #bac3e0;
	top:26px;
	left:0;
	width:152px;
	border-top: 2px solid #004056;
	border-bottom: 2px solid #004056;
		border-left: 2px solid #004056;
	border-right: 2px solid #004056;
	border-width: 2px;
}


/* another hack for IE5.5 */
* html .menu ul ul
{
	top:30px;
	t\op:27px;
}


 
/* position the third level flyout menu */
.menu ul ul ul
{
	left:150px;
	top:-1px;
	width: 224px;
}

 
/* 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 second level links */
.menu ul ul a, .menu ul ul a:visited
{
	background: #bac3e0;
	color: #fff;
	height:auto;
	line-height:1em;
	padding:5px 10px;
	width:130px;
	font-size: 11px;
	letter-spacing: 0px;
	margin: 0px;
}


/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited
{
	width:150px;
	w\idth:130px;
	height: auto;
	margin: 0px;
	padding-bottom: 8px;
	padding-top: 8px;
	color: #004056;
}

* html .menu ul ul ul a, * html .menu ul ul ul a:visited
{
	width:200px;
	w\idth:200px;
}
 
/* style the top level hover */
.menu a:hover
{
	color:#fff;
	background: none;
}

.menu ul ul a:hover
{
	color: #000;
	font-size: 11px;
	letter-spacing: 0px;
	background: #fff;

}

* html .menu ul ul a:hover
{
	width: 132px;
}

.menu :hover > a
{
	color:#fff;
}

.menu ul ul :hover > a
{
	color: #000;
	font-size: 11px;
	letter-spacing: 0px;
	background: #fff;
}


 
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul,
.menu ul .anchor: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;
}

