/* remove the bullets, padding and margins from the lists */
.menu ul{
	list-style-type:none;
	padding:0;
	margin:0;
}
/* 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;
	margin-right: 20px;
	margin-left: 20px;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu ul li ul li{
	padding: 0;
	margin: 0;
}
.menu ul li a{
	background-color: transparent;
	border-bottom: none;
}
/* use the table to position the dropdown list */
.menu table{
	position:absolute;
	border-collapse:collapse;
	z-index:80;
	left:-1px;
	top:21px;
}
/* style all the links */
.menu a, .menu a:visited {
	display:block;
	font-size:8pt;
	padding: 4px 0 5px 0;
	color:#FFF;
	text-decoration:none;
}
/* Size of submenus */
.menu ul li ul li{
	width: 160px;
	padding: 0 0 0 10px;
	background-color:#7A868C;	
	border-bottom: 1px solid #606E75;
}
/* Size of submenus */
.menu ul li ul li.menu_7_home {
	width: 78px;
}
.menu ul li ul li.menu_7 {
	width: 97px;
}
/* Hover for submenus */
.menu ul li ul li:hover{
	background-color:#59686F;
}
/* hide the sub level links */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	width:160px;
	height:0;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
	visibility:visible;
}
/*  HACK TO WORK FOR IE6 */
* html .menu :hover{
	background:transparent;
}
* html #top_menu {
	padding: 0 0 0 30px;
	height: 21px;	
}
/* Hover for submenus */
* html .menu ul li ul li a:hover{
	font-weight: bold;

}
* html .menu ul {
	padding-top: 29px;
}
.menu table{
	top:-8px;
}
