#menu{
width: 99%;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: normal;
font-weight:bold;
font-variant: normal;
}

#menu:after{ /*Add margin between menu and rest of content in Firefox*/
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden; 
}

#menu ul{
border: 0px solid #BBB;   
width: 100%;
padding: 0;
margin: 0;
text-align: center;
}

#menu ul li{
display: inline;
}


#menu ul li a{
color: #003366;
padding: 0 7px;
margin: 0px;
text-decoration: none;
border-right: 0px solid #DADADA;
background: url(/intro/images/divider.gif) center right no-repeat; /*Theme Change here*/
}

#menu ul li a:hover{
color: #003366;
text-decoration: none;
}

#menu ul li a[onMouseover]:after{ /*HTML to indicate drop down link*/
content: "";
/*content: " " url(downimage.gif); /*uncomment this line to use an image instead*/
}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
	position:absolute;
	top: 0;
	border: 1px solid #003366; /*Theme Change here*/
	border-bottom-width: 0;
	font:normal 11px Arial,Helvetica,Sans-Serif;
	line-height:12px;
	z-index:100;
	background-color: #FFFFFF;
	width: 180px;
	visibility: hidden;
filter: progid:DXImageTransform.Microsoft.Shadow(color=#CACACA,direction=135,strength=4); /*Add Shadow in IE. Remove if desired*/
}

.dropmenudiv a{
width: auto;
display: block;
text-indent: 0px;
border-bottom: 1px solid #003366; /*Theme Change here*/
padding: 4px 0px 4px 4px;
text-decoration: none;
font-weight: normal;
color: #003366;
}

.dropmenudiv a:hover{ /*Theme Change here*/
background-color: #003366;
color: #FFFFFF;
}