/* TOP MENU */
.menu {
	position:relative;
	float: left;
	width: 990px;
	z-index: 2000;
	padding: 0px;
	margin: 0px;
	line-height: 20px;
}
/* hack to correct IE5.5 faulty box model */
* html .menu {
	width:990px; 
	w\idth:990px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	float:left;
	width: 990px;
	height: 18px;
	display: block;
	left: 0px;
	margin: 0px;
	padding: 8px 0 0 0;
	text-align: left;
	border-bottom: 1px solid #060655;
	margin:0;
	list-style-type:none;
}
.menu ul ul {
	background: none;
	text-align: left;
	/* opacity:.50; filter: alpha(opacity=50); -moz-opacity:.50;  */
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	display: inline;
	padding: 0px;
	margin:0px;
	float:left;
	padding-left: 25px;
	padding-right: 25px;
	background: url(../images/nav-divider.gif) top right no-repeat;
	/* position: relative; */
	z-index: 150;
	position: static;
}
.menu li.first {
	padding-left: 10px;
}
.menu li.last {
	padding-right: 10px;
	background: none;
}
.menu ul li .flyout {
	display:block;
	text-align: left;
	background: #FFF;
	height: 27px;
	filter:alpha(opacity=80);
	-moz-opacity:0.80;
	-khtml-opacity: 0.80;
	opacity: 0.80;/* */
}
.menu ul li .flyoutright {
	display:block;
	text-align: right;
	background: #FFF;
	height: 27px;
	filter:alpha(opacity=80);
	-moz-opacity:0.80;
	-khtml-opacity: 0.80;
	opacity: 0.80;/**/
}
/* style the links for the top level */
.menu a, .menu a:visited {
	/* display:block; */
	line-height: 22px;
	text-decoration:none;
	border:0px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	text-decoration:none;
}
/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	/* background: url(../images/nav-flyoutbgtop.gif) top right no-repeat; */
	text-decoration:none;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
	/* background: url(../images/nav-flyoutbgv.gif) top right no-repeat; */
}
.menu ul ul :hover > a.drop {
	/* background: url(../images/nav-flyoutbgtop.gif) top right no-repeat; */
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background:#FFF;
}
/* style the third level hover */
.menu ul ul ul a:hover {
	background: #2f444e;
}


/* hide the sub levels and give them a positon absolute so that they take up no room // background:#dde0e0; */
.menu ul ul {
	/* display: none; */
	visibility: hidden;
	position:absolute; 
	font-size: 12px;
	left: 0px;
	top: 26px;
	height: 27px;
	width: 988px;
	margin-left: 0px;
	padding-top: 0px;
	border: 1px solid #060655;
}
/* another hack for IE5.5 */
* html .menu ul ul {
	top:26px;
	t\op:26px;
}
.menu ul ul li {
	background: none;
	width:988px;
	padding: 0px;
}
/* position the third level flyout menu */
.menu ul ul ul{
	left:122px;
	top:0px;
	width:122px;
}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
	left:-122px;
}

/* 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;
	z-index: 1501;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #060655; 
	height: auto; 
	line-height: 2em; 
	padding: 7px 15px 5px 10px; 
	/* width:107px; text-decoration:none;  */
	border: none; 
	
	background: none;
}
/* style the second level on links */
.menu ul ul a.on, .menu ul ul a.on:visited {
	color: #060655; 
	font-weight:bold;
	height: auto; 
	line-height: 1em; 
	padding: 7px 15px 5px 10px;
	/* width:107px; 
	text-decoration:none; */
	 border: none; 
}
/* yet another hack for IE5.5 */
* html .menu ul ul a {
	/*width:107px; 
	w\idth:107px; 
	
	text-decoration:none;*/
}

/* style the top level hover * html .menu ul ul a:visited */
.menu a:hover, .menu ul ul a:hover {
	color: #060655; 
	background: none;
	text-decoration:underline;
}
.menu :hover > a, .menu ul ul :hover > a {
	color:#060655;
	background: 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;
}
