

/* = Mainnav Styles
-----------------------------------------------------------------------------*/

.menu{ 

width: 943px;
height: 30px;
padding: 0 0 0 0px;
background: url('../images/bg-mainmenu.gif') repeat-x;
}

/* hack to correct IE5.5 faulty box model */
* html .menu{ 
	width:943px;
	w\idth:943px;
}

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

/* 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: auto;
	position:relative;
}

.menu li a.noRightBorder{
	border-right: none;
}

* html .menu a.noRightBorder, * html .menu a.noRightBorder:visited{
	border-right: none;
}

/* style the links for the top level */
.menu a, .menu a:visited{
	display:block;
	text-decoration:none;
	color:#FFFFFF;
	width: auto;
	height: 20px;
	background: none;
margin: 0 14px 0 14px;
	padding: 10px 7px 0px 8px;
	font-family: Verdana, "Times New Roman", Times, serif;
	font-size: 11px;
font-weight: bold;
	border-right: 0px solid #FFFFFF;

}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu ul li, * html .menu ul li{
	float: left;
	padding: 10px 0px 0px 0px;
	height: 27px;
}

* html .menu a, * html .menu a:visited{
	width: auto;
	w\idth: auto;
	display: inline;
	height: 27px;
	h\eight: 27px;
	font-size: 11px;
	padding-left: 6px;
	padding-right: 6px;
	padding-bottom: 7px;
}

/* 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:30px;
	left: -1px;
	width:180px;
	border: none;
	height: auto;
}

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

/* 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-color: #FFFFFF;
	color:#2462AD;
	height:auto;
	display: block;
border-left: 1px solid #004080;
border-right: 1px solid #004080;
border-bottom: 1px solid #004080;
	width: 165px;
	padding: 5px 7px 5px 8px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

/* yet another hack for IE5.5 */
* html .menu ul ul li, * html .menu ul ul li{
	padding: 0px 0px 0px 0px;
	height: auto;
}

/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited{
	height: auto;
	width: 165px;
	padding: 5px 7px 5px 8px;
}


/* style the top level hover */
.menu a:hover{
	color: #FFFFFF;
	background:#314576;
	text-decoration: none;
	background-image: url(../images/bkgd-mainnav.html);
	background-repeat: repeat-x;
}

.menu :hover > a{
	color: #FFFFFF;
	background: #314576;
	text-decoration: none;
	background-image: url(../images/bkgd-mainnav.html);
	background-repeat: repeat-x;
}

.menu ul ul a:hover{
	color: #314576;
	background:#FFFFFF;
	text-decoration: none;
}

.menu ul ul :hover > a{
	color: #314576;
	background:#FFFFFF;
	text-decoration: none;
}

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

