/* NAVIGATION START *******************************/
/* common styling */
/* set up the overall width of the menu div, the font and the margins */

.menu {
	width:930px;
	margin:0 0 0 10%;
	position:absolute;
	top:32px;
}

/* remove the bullets and set the margin and padding to zero for the unordered list */
.menu ul {
	padding:0;
	margin:0;
	list-style-type: none;
}

/* float the list so that the items are in a line and their position relative so that the drop down list will appear in the right place underneath each list item */
.menu ul li {
	float:left;
	position:relative;
    z-index:500;
}

/* style the main menu links */
.menu ul li a, .menu ul li a:visited {
	display:block;
	text-align:left;
	padding-left:15px;
	text-decoration:none;
	height:20px;
	color:#032B3B;
	background-color:#E7E7E7;
	border-bottom: 1px #999999 solid;
	border-top: 1px #E7E7E7 solid;
}

/* make the dropdown ul invisible */
.menu ul li ul {
	display: none;
}

/* specific to non IE browsers */
/* set the main menu li on hover */
.menu ul li:hover a {
	display:block;
	border-bottom: 1px #999999 solid;
	border-top: 1px #E7E7E7 solid;
}

/* make the sub menu ul visible and position it beneath the main menu list item */
.menu ul li:hover ul {
	display:block;
	position:absolute;
	width:170px;
	top:21px;
	left:0px;
    padding:0;
}

.menu ul ul li {
	float:none;
    padding:0;
}

/* style the background and foreground color of the submenu links */
.menu ul li:hover ul li a {
	background-color:#E7E7E7;
	display:block;
	color: #032B3B;
	padding: 3px 0px 3px 15px;
	border-bottom: 1px #CCCCCC solid;
	border-left: 1px #CCCCCC solid;
	border-right: 1px #CCCCCC solid;
    height:12px;
   	line-height:12px;
	font-size:12px;
}

/* style the background and forground colors of the links on hover */
.menu ul li:hover ul li a:hover {
	background:#D1E4F2;
	color:#000066;
}
