﻿/* remove the bullets, padding and margins from the lists */
.menu {
	margin-right: 10px;
	margin-left: 10px;
	background-color: #74c2e1;
	overflow: hidden;
}

.menu ul{
	list-style-type: none;
	width: 100%;	
	padding: 0;
	margin: 0;

}











.menu a, .menu :visited  {
	display: block;
	font-size: 11px;
	width: 96px;
	padding: 7px 0;
	color: #000;
	background: #74c2e1;
	text-decoration: none;
	margin-right: 1px;
	text-align: center;



}
.menu a:hover {
	background-color: #d3d3d3;
	border: 0px solid #f2f2f2;
}

/* 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;
background-color: #6699CC;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}


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

