.menu {
	height:23px;
	font-size:90%;
	position:relative;
	z-index:100;
	margin-left: 1px;
	_margin-left: 0px;
	margin-top: 52px;
	_margin-top: 51px;
	_left: 1px;
	background: #000000;
	border-top: 1px solid #F5F5F5;
}
/* hack to correct IE5.5 faulty box model */
* html .menu {
	width:100%;
	w\idth:100%;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	text-align:center;
}
.menu ul ul {width:auto;}
/* 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;
	background: url(/images/tabBg.jpg);
	height:23px;
	margin-left:0px;
	margin-right: 0px;
	padding-left: 10px;
	_padding-left: 5px;
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	text-decoration:none;
	text-align:left;
	color:#FFFFFF;
	height:23px;
	padding-left:5px;
	line-height:23px;
	width: auto;
	_width: 90px;
	padding-right: 20px;
	_padding-right: 0px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width:90px;
	w\idth:90px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {background:none;}
/* style the second level hover */
.menu ul ul a.drop:hover{background:none;}
.menu ul ul :hover > a.drop {background:none;}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background: #CDCDCD;
}
/* style the third level hover */
.menu ul ul ul a:hover {
	color:#FFF000;
	background:#AAAAAA;
}


/* 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:23px;
	left:0;
	width:149px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
	top:23px;
	t\op:23px;
}

/* position the third level flyout menu */
.menu ul ul ul{
	left:160px;
	_left:150px;
	top:0px;
	width:160px;
}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {left:-149px;}

/* 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;;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background:#DDDDDD;
	color:#444444;
	text-align:left;
	height:auto;
	line-height:auto;
	padding:2px 3px 2px 7px;
	width:150px;
}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {
	width:140px;
	w\idth:140px;
}

/* style the top level hover */
.menu a:hover {
	color:#FFFFFF;
	background:none;
}
.menu :hover > a {
	color:#FFFFFF;
	background:none;
}

/* style the 2nd level hover */
.menu ul ul a:hover{
	color:#FFFFFF;
	background:#BBBBBB;
}
.menu ul ul :hover > a {
	color:#FFFFFF;
	background:#BBBBBB;
}

/* 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;}

