﻿/* 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;
	border-spacing: 0px;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
/* the -5 Margin-top removes the gap between menu items */
.menu li{
	float: left;
	position: relative;
	z-index: 100;
	padding-bottom: 0px;
	margin-top: -5px;
	margin-bottom: 0px;
}

/* use the table to position the dropdown list */
.menu table{
	padding: 0px 0px 10px 0px;
	margin: 0px;
	position: absolute;
	border-collapse: collapse;
	z-index: 80;
	left: 0px;
	width: 0px;
	height: 0px;
	bottom: 0px;
	border-spacing: 0px;
}

/* style all the links */
.menu a, .menu :visited {
	border: thin solid #FBD604;
	display: block;
	font-size: 14px;
	width: 110px;
	color: #FFFFFF;
	background: #333333;
	text-decoration: none;
	margin-right: 1px;
	text-align: center;
	margin-top: 0px;
	margin-bottom: 0px;
	font-weight: bold;
	padding-top: 5px;
	padding-bottom: 5px;
}
/* style the links hover */
.menu :hover{
	color: #000000;
	background: #D5EAFF;
}

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