.navbarstyle{
width: 100%;
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
font-weight: bold;
color: 3366CC;
}

.navbarstyle:after{ /*Add margin between menu and rest of content in Firefox*/
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden;
}

.navbarstyle ul{
width: 100%;
padding: 4px 0;
margin: 0;
text-align: center; /*set value to "left", "center", or "right"*/
}

.navbarstyle ul li{
display: inline;
}

.navbarstyle ul li a{
color: #3366CC;
padding: 4px 7px;
margin: 0;
text-decoration: none;
}

.navbarstyle ul li a:hover, .navbarstyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
	color:#990000; /*THEME CHANGE HERE*/
}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
	position:absolute;
	top: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight:normal;
	line-height:18px;
	z-index:100;
	width: 150px;
	visibility: hidden;
  background-color:#ffffff;
  border:1px solid #003366;
  /* for IE */
  filter:alpha(opacity=90);
  /* CSS3 standard */
  opacity:0.9;
}


.dropmenudiv a{
width: 150px;
display: block;
padding: 2px 0;
text-decoration: none;
font-weight: normal;
color: #3366CC;
}

* html .dropmenudiv a{ /*IE only hack*/
width: 150px;
}

.dropmenudiv a:hover{
color: #FFFFFF;
  background-color:#0066CC;
  /* for IE */
  filter:alpha(opacity=70);
  /* CSS3 standard */
  opacity:0.7;
}