/* remove the bullets, padding and margins from the lists */

.menu { float:right; margin-top: 55px;}

.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:2;
}

/* use the table to position the dropdown list */
.menu table{
	position:absolute;
	border-collapse:collapse;
	z-index:1;
	left:-1px;
	top:25px;

}

/* style all the links */
.menu a, .menu :visited {
	display: block;
	font-size: 13px;
	width: auto;
	padding: 7px 8px 0 8px;
	color: #666;
	text-decoration: none;
	margin-right: 1px;
	text-align: left;
	font-weight: bold;
	font-family: "Gill Sans MT", Arial, Helvetica, sans-serif;
}

.menu ul ul a, .menu ul ul :visited{
	width:150px;
	font-weight: normal;
	display: block;
	background: #444;
	color:white;

	
}
/* style the links hover */
.menu :hover{
	color: red;
}

/* 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;
}