﻿/* remove the bullets, padding and margins from the lists */
.menu ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
}
/* 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{
	position: absolute;
	border-collapse: collapse;
	z-index: 80;
	left: -1px;
	top: 22px;
}

/* style all the links */
.menu a {
	border-style: solid;
	border-width: 0px 1px 1px 0px;
	border-color: #EEEEFF;
	display: block;
	font-size: 11px;
	width: 112px;
	padding: 3px 0 2px 0;
	color: #FFFFFF;
	background: #0000FF;
	text-decoration: none;
	text-align: center;
	height: 17px;
}
/* style the links hover */
.menu :hover{
	color: #000000;
	background: #EEEEFF;
}

/* hide the sub level links */
.menu ul ul {
	visibility: hidden;
	position: absolute;
	width: 139px;
	height: 0;
}
/* make the sub level visible on hover list or link */
.menu ul a:hover ul{
visibility:visible;
}
.menuformat {
	margin-left: 4px;
}
.menu ul li:hover ul{
visibility:visible;
}