/* benchspace menu */

.flyoutmenu {
	z-index:1000;
	margin:10px 0 10px 10px; /* this page only */
}

.flyoutmenu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	width:120px;
}

/* hack for IE5.5 */
* html .flyoutmenu ul {
	margin-left:-16px; 
	ma\rgin-left:0;}

.flyoutmenu li {
	position:relative;
	background:#FF3333;
	height:16px;
}

/* get rid of the table */
.flyoutmenu table {
	position:absolute; 
	border-collapse:collapse; 
	top:0; left:0; 
	z-index:100; 
	font-size:1em;
}

/* style links */
.flyoutmenu a, .flyoutmenu a:visited {
	display:block; 
	text-decoration:none;
	height:15px;
	line-height:15px;
	width:119px;
	color:#000;
	text-indent:5px;
	background-color:#FF3333;
}

/* hack for IE5.5 */
* html .flyoutmenu a, * html .flyoutmenu a:visited {
	background:#FF3333; 
	width:120px; 
	w\idth:119px;
}

/* style the link hover */
* html .flyoutmenu a:hover {
	color:#fff; 
	background:#FF3333;}

.flyoutmenu :hover > a {
	color:#fff; 
	background:#FF3333;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.flyoutmenu ul ul {
	visibility:hidden;
	position:absolute;
	top:0;
	left:120px; 
}
/* make the second level visible when hover on first level list OR link */
.flyoutmenu ul li:hover ul,
.flyoutmenu ul a:hover ul {
	visibility:visible;
}

/* keep the third level hidden when you hover on first level list OR link */
.flyoutmenu ul :hover ul ul{
	visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.flyoutmenu ul :hover ul :hover ul ul{
	visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.flyoutmenu ul :hover ul :hover ul{ 
	visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.flyoutmenu ul :hover ul :hover ul :hover ul { 
visibility:visible;
	}
<!--[if IE 7]>
<style type="text/css">
	.flyoutmenu li {
	float:left;
	}
</style>
<![endif]-->
