/* 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:right;
vertical-align:vertical;
position:relative;
z-index:100px;
left:2px;
}

/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:20;
left:-25px;
top:26px;
}

/* style all the links */
.menu a, .menu :visited {
background-image:url(image/top4.gif);
	display:block;
	font-size:11px;
	width:119px;
	font-weight:bold;
	font-family:sans-serif;
	padding:5px 0;
	color:#084B8A;
	text-decoration: none;
	margin-right: 1px;
	text-align: center;
	
}
/* style the links hover */
.menu :hover{
	color: Blue;
	background-color:#CFEB69;
}

/* 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 li:hover ul,
.menu ul a:hover ul{
visibility:visible;
}
