/* MAIN NAVIGATION MENU SECTION */

/* remove the bullets, padding and margins from the lists */
.menu ul
{
	list-style-type: none;
	padding: 0;
	margin: 0;
	font-weight: bold;
	z-index: 200;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li
{
	float: right;
	position: relative;
	z-index: 300;
	border-right: 1px solid #1f3a98;
}

/* use the table to position the dropdown list */
.menu table
{
	position: absolute;
	border-collapse: collapse;
	z-index: 100;
	left: -1px;
	top: 10px;
}
	* html .menu table
	{
		left: -2px;
		top: 16px;
	}

/* style all the links */
.menu a, .menu :visited
{
	display: block;
	font-size: 10px;
	width: 90px;
	padding: 0px 0;
	padding-bottom: 5px;
	color: #000;
	background: #fff;
	text-decoration: none; /*margin-right:1px;*/
	text-align: center;
}
/* style the links hover */
.menu :hover
{
	color: #fff;
	background: #1f3a98;
	text-decoration: none;
}
.menu ul ul :hover
{
	color: #fff;
	background: #bb8549;
	text-decoration: none;
}

/* hide the sub level links */
.menu ul ul
{
	visibility: hidden;
	position: absolute;
	width: 91px;
	height: 0;
}
.menu ul ul li
{
	font-weight: normal;
	border-right: 1px solid #1f3a98;
	border-left: 1px solid #eee;
	border-bottom: 1px solid #eee;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul, .menu ul a:hover ul
{
	visibility: visible;
	text-decoration: none;
}