.menu {
	position:relative;
	z-index:2001;
	border: 0px;
	width: 563px;
	padding: 0px;
	margin: 0px;
	height: 30px;
}
/* hack to correct IE5.5 faulty box model */
* html .menu {
	width:563px; 
	w\idth:563px;
	z-index:71;
	border: 0px;
	line-height: 30px;
	border-bottom: none;
}
/* 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 {
	text-align: left;
	margin-left: -1px;
	/* opacity:.90; filter: alpha(opacity=90); -moz-opacity:.90; */
}
/* 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;
	border-right:1px solid #fff;
}
.menu li li{
	border: none;
}

/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	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;
}


/* 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;
	/* text-transform: uppercase;
	font-size: 10px; */
	left: 0px;
	top: -125px;
	padding-bottom: 10px;
	width: 350px;
	height: 115px;
	overflow:hidden;
	vertical-align: bottom;
}
.menu ul ul.col2 {
	/* display: none; */
	visibility: hidden;
	position:absolute;
	border-left: 1px solid #4e7278;
	left: 189px;
	top: -125px;
}

/* another hack for IE5.5 */
* html .menu ul ul {
	top: -125px;
	t\op: -125px;
}


/* 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;
}
.menu table table {
	position:relative;
}
.menu ul li .menubg {
	background: #FFF;
	filter:alpha(opacity=85);
	-moz-opacity:0.85;
	-khtml-opacity: 0.85;
	opacity: 0.85;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	color: #FFF;
	height: auto; 
	line-height: 1em; 
	padding: 6px 9px 3px 8px; 
	/* width:189px; */
	border: none; 
	text-decoration:none; 
}

/* yet another hack for IE5.5 */
* html .menu ul ul a {
	/*
	width:167px; 
	w\idth:167px;
	*/ 
	text-decoration:none;
}

/* style the top level hover * html .menu ul ul a:visited */
.menu a:hover, .menu ul ul a:hover {
	color: #f79c00; 
	background: none; 
	text-decoration:none;
}
.menu :hover > a, .menu ul ul :hover > a {
	color:#f79c00;
	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;
}

