﻿/* remove the bullets, padding and margins from the lists */
.menu ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
	font-family: Calibri;
	bottom: 10px;
	color: #003D8E;
	text-transform: uppercase;
	font-weight: 800;
	font-size: small;
}
/* 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;
	color: #003D8E;
	font-family: Calibri;
}

/* use the table to position the dropdown list */
.menu table{
	position: absolute;
	border-collapse: collapse;
	z-index: 30;
	left: -1px;
	top: 30px;
	color: #003D8E;
	font-family: Calibri;
	font-size: small;
}

/* style all the links */
.menu a, .menu :visited {
	border-color: #C0C0C0;
	border: thin #C0C0C0 solid;
	display: block;
	font-size: small;
	width: 110px;
	padding: 7px 0;
	color: #C0C0C0;
	background: #003d8e;
	text-decoration: none;
	margin-right: 1px;
	text-align: center;
	font-family: Calibri;
	font-weight: 400;
	text-transform: capitalize;
	margin-left: 1px;
}
/* style the links hover */
.menu :hover{
	color: #003D8E;
	background: #C0C0C0;
	font-family: Calibri;
	text-transform: uppercase;
	font-size: small;
}

/* 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;
}