.navstyle{
width: 100%;
font-weight: bold;
z-index: 100;
}

.navstyle:after{ /*Add margin between menu and rest of content in Firefox*/
content: "."; 
display: block; 
height: 0; 
clear: both;
color: white; 
visibility: hidden;
}

.navstyle ul{
/* border: 1px solid #BBB; */
border: none;
width: 99.6%;
/* background: url(./backgrounds/chromebg-burgundy.gif) center center repeat-x; */  /*THEME CHANGE HERE*/
padding: 4px 0;
margin: 0;
text-align: center; /*set value to "left", "center", or "right"*/
}

.navstyle ul li{
display: inline;
}

.navstyle ul li a{
color: #FFFFFF;
padding: 4px 7px;
margin: 0;
text-decoration: none;
/* border-right: 1px solid #DADADA; */
border-right: none;
}

.navstyle ul li a:hover, .navstyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
background: url(./backgrounds/chromebg-over-burgundy.gif) center center repeat-x;
}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{	/* IE Class */
position:absolute;
top: 0;
border: 1px solid #BBB; /*THEME CHANGE HERE*/
border-bottom-width: 0;
font:normal 12px Verdana;
line-height:18px;
z-index:100;
background-color: #FDE95E;
width: 200px;
visibility: hidden;
filter: progid:DXImageTransform.Microsoft.Shadow(color=#000000,direction=135,strength=10); /*Add Shadow in IE */
-moz-box-shadow: 5px 5px 10px #000000;
}

.dropmenudiv{ 	/* Mozilla Class */
position:absolute;
top: 0;
border: 1px solid #BBB; /*THEME CHANGE HERE*/
border-bottom-width: 0;
font:normal 12px Verdana;
line-height:18px;
z-index:100;
background-color: #FDE95E;
width: 200px;
visibility: hidden;
-moz-box-shadow: 7px 7px 7px #000000; /*Add Shadow in Mozilla */
/*filter: alpha(opacity=30);*/
/*-moz-opacity: 0.3;*/
}

.dropmenudiv a{
width: auto;
display: block;
text-indent: 3px;
border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
padding: 2px 0;
text-decoration: none;
font-weight: bold;
color: black;
}

.dropmenudiv a:hover{
width: auto;
display: block;
text-indent: 3px;
border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
padding: 2px 0;
background-color: #FFFFFF;
text-decoration: none;
font-weight: bold;
color: #480F15;
text-shadow: 3px 3px 3px #000;
}

* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}




