/* style the outer div to give it width */
.menu{
	font-family:Verdana, Arial, Helvetica, sans-serif;font-size:11px;font-weight:bold;
	padding:0px;
	width:790px;height:30px;  /* IQNETCOM changed from 715px to 815px to accomodate new longer category names */
	text-align:left;
	background:url(scroll_top_normal.gif);
	z-index:99999;	
}
.menu table {border-collapse:collapse; padding:0; margin:-1px; width:0; height:0; z-index:1;}  /* style the table so that it takes no part in the layout - required for IE to work */
.menu ul{padding:0;margin:0;list-style-type:none;}  /* remove all the bullets, borders and padding from the default list styling */

/* === Top Level Links === */
.menu ul li {float:left;height:3em;line-height:3em;}  /* float the top list items to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu a{
	padding:0em 0em 0em 1em;
	/* -- width:80px; -- IQNETCOM commented this out to get it to resize automatically -- */
	display:block;
}
.menu a:link{color:#999999;}
.menu a:visited{color:#999999;}
.menu a:active{color:#0A74A4;}


/* === Top Level Hover === */
.menu li:hover {position:relative;}
.menu :hover > a{
	color:#0A74A4;
	background:url(scroll_top_over.gif) center center;
	position:relative;
	z-index:100;
}

/* === Sub Level Links === */
.menu ul ul li {width:100px;height:auto;line-height:1em;}  /* style the sub level list items */
.menu ul ul a{
	font-size:10px;font-weight:normal;
	padding:0.5em 1em;
	width:12em;
	display:block;	
	border-left:5px solid #999999;
	background-color:#DBDBDB;
}
.menu ul ul a:link{color:#6f6f6f;}
.menu ul ul a:visited{color:#6f6f6f;}
.menu ul ul a:active{color:#ffffff;}
* html .menu ul ul a, * html .menu ul ul a:visited{width:14em; w\idth:12em;} /* hack IE5.x to get the correct the faulty box model and get the width right */

/* === Sub Level Hover === */
.menu ul ul li:hover {position:relative;}
.menu ul ul :hover > a {color:#fff;background:#666666;border-left:5px solid #EE8616;}

/* 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:3em; left:0; width:14em;}

/* position the third level flyout menu */
.menu ul ul ul{left:12em;top:0;width:14em;}

/* make the second level visible when hover on first level list OR link */
.menu ul :hover ul{visibility:visible; height:auto; padding:0 3em 3em 3em;  left:-3em;}
/* 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; left:9em;}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul {visibility:visible;}
