.menu {font-size:0.85em; width:1024px; text-align:center; margin:0; padding:0; z-index:100; position:relative;
}

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

/* style the sub-level lists */
.menu ul ul {width:140px; margin-top:8px;}

/* float the top list items to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu ul li {float:left;height:3em;line-height:3em; }

/* style the sub level list items */
.menu ul ul li {display:block; font-size:11px; font-weight:normal;width:130px;height:auto; line-height:1em;}

/* style the links for the top level */
.menu a, .menu a:visited {display:block;float:left;height:100%;font-size:11px;text-decoration:none;color:#fff; font-weight:normal; padding:0; border:0;}
.menu a.lnk, .menu a.lnk:visited {
	display:block;
	float:left;
	padding:0 5px;
	height:100%;
	font-size:10pt;
	text-decoration:none;
	color:#003366;
	font-weight:normal;
	border:0;
}

/* style the sub level links */
.menu ul ul a, .menu ul ul a:visited {display:block; background:#9A0000; color:#fff;width:180px; border-bottom:1px solid #C00000; text-align:left; height:100%;line-height:18px; padding:5px 10px;}
* html .menu ul ul a, * html .menu ul ul a:visited  {width:180px;  w\idth:180px; margint:0px; }


/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; left:1px; top:0; width:0; height:0; font-size:1em; z-index:-1;}


/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {background:#b4be9c; margin-left:50px;}
/* style the fourth level background */
.menu ul ul ul ul a, .menu ul ul ul ul a:visited {background:#c4ceac;}
/* style the sub level 1 background */
.menu ul :hover a.sub1 {background:#660000;}
/* style the sub level 2 background */
.menu ul ul :hover a.sub2 {background:#c4ceac;}

/* style the level hovers */
/* first */
* html .menu a:hover {color:#003366; position:relative; z-index:100;}
.menu li:hover {position:relative;}
.menu :hover > a {color:#003366;}
/* second */
* html .menu ul ul a:hover{color:#CC0000;background:#b4be9c; position:relative; z-index:140;}
.menu ul ul li:hover {position:relative;}
.menu ul ul :hover > a {color:#CC0000;background:#b4be9c;}
/* third */
* html .menu ul ul ul a:hover {background:#c4ceac; position:relative; z-index:150;  }
.menu ul ul ul :hover > a {background:#c4ceac;}
/* fourth */
.menu ul ul ul ul a:hover {background:#d4debc; position:relative; z-index:160;}


/* 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:2.5em;
	width:10em;
	
}

/* position the third level flyout menu */
.menu ul ul ul{
	top:0;
	width:10em;
	right: 265px;
}

*html .menu ul ul ul{
	top:0;
	width:10em;
	right:-5px;
}

/* position the fourth level flyout menu */
.menu ul ul ul ul{
	top:0;
	width:10em;
	right: 215px;
}
* html .menu ul ul ul ul{
	top:0;
	width:10em;
	right: -5px;
}

*:first-child+html .menu ul ul{
	top:2.5em;
	width:10em;
	left:0px;
}

*:first-child+html .menu ul ul ul{
	top:0em;
	width:10em;
	left:-245px;
}

/* make the second level visible when hover on first level list OR link */
.menu ul :hover ul{visibility:visible; height:auto; padding-bottom:3em; background:transparent url(img/trans.gif);}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{visibility:hidden;}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover 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;}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul {visibility:visible;}


