/* TOP MENU
ul#menu {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	height: 47px;
	overflow:hidden;
}
ul#menu li {
	list-style-type:none;
	float:left;
	display:inline;
	padding: 0px;
	margin: 0px;
}
  */
.menu {
	font-size: 95%;
	height:47px; 
	position:relative;
	float:left;
	width: 974px;
	z-index: 150;
}
/* hack to correct IE5.5 faulty box model */
* html .menu {
	width:974px; 
	w\idth:974px;
}
/* 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;
	/* 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;
	z-index: 150;
}
.flyoutnav {
	position:relative;
	float:left;
	padding-top: 0px;
	padding-bottom: 10px;
	/* height: 47px; margin-bottom: 20px; */
	background: url(../images/nav-flyoutbgtop.gif) top left repeat-x #dde0e0;
	filter:alpha(opacity=90);
	-moz-opacity:0.9;
	-khtml-opacity: 0.9;
	opacity: 0.9;
}
/* 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;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background:#2f444e;
}
/* 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: 11px;
	left: 0px;
	top: 47px;
	padding-top: 0px;
	
}
/* another hack for IE5.5 */
* html .menu ul ul {
	top:47px;
	t\op:47px;
}
/* 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 {
	color: #2f444e; 
	font-size: 100%;
	height: auto; 
	line-height: 1em; 
	padding: 7px 5px 5px 10px; 
	width:107px;
	border: none; 
	text-decoration:none; 
}
/* style the second level on links */
.menu ul ul a.on, .menu ul ul a.on:visited {
	color: #2f444e; 
	font-weight:bold;
	height: auto; 
	line-height: 1em; 
	padding: 7px 5px 5px 10px; 
	width:107px;
	border: none; 
	text-decoration: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: #2f444e; 
	background: none; 
	text-decoration:underline;
}
.menu :hover > a, .menu ul ul :hover > a {
	color:#2f444e;
	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;
}
