#menu {
	height: 89px;
}

#menu ul {
	list-style-type: none;
	margin: 0 auto;
	padding: 0;
	width: 892px;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
#menu li {
	float: left;
	position: relative;
	z-index: 100;
}
/* use the table to position the dropdown list */
#menu table {
	border-collapse: collapse;
	left: -40px;
	_left: 0;
	position: absolute;
	top: 60px;
	_top: 40px;
	z-index: 80;
}
/* style all the links */
#menu a, #menu :visited {
	color: #fff;
	display: block;
	text-decoration: none;
}
/* style the links hover */
#menu :hover {}
/* hide the sub level links */
#menu ul ul {
	height: 0;
	position: absolute;
	visibility: hidden;
	width: 223px;
}
/* make the sub level visible on hover list or link */
#menu ul li:hover ul, #menu ul a:hover ul {
	visibility: visible;
}


#menu a {
	display: block;
	width: 178px;
	height: 89px;
}

#menu ul ul {
	margin-top: -30px;
	_margin-top: 0;
	width: 223px;
}

#menu ul ul li {
	height: 25px;
}

#menu ul ul a {
	display: block;
	font-size: 12px;
	background: none;
	height: 25px;
}
