/**** Nav Menu Wrapper****/
.navigation 
{
  height: 27px;
  width: 100%;
  background-repeat:repeat-x;
  background-position:center;
}

/**** Menu ****/
.menustyle{
width: 99%;
font-weight: bold;
font-size:12px;
}

.menustyle:after{ /*Add margin between menu and rest of content in Firefox*/
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden;
}

.menustyle ul{
width: 100%;
background: url(none) repeat-x; /*THEME CHANGE HERE*/
padding: 6px 0;
margin: 0;
text-align: left; /*set value to "left", "center", or "right"*/
}

.menustyle ul li{
display: inline;
}

.menustyle ul li a{
color:White;
padding: 7px 12px 8px 16px;
margin: 0;
margin-left:-4px;
text-decoration: none;
border-right: 1px solid #666666;
}

.menustyle ul li a.first{
margin-left:0px;
}

.menustyle ul li a.end
{
  border-right-width:0px;
}

.menustyle ul li a:hover, .menustyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
background: url('../_images/menu/menu_blue.png') repeat-x; /*THEME CHANGE HERE*/
}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
position:absolute;
top: 0px;
margin-top:-2px;
border: 1px solid #793e26; /*THEME CHANGE HERE
border-bottom-width: 0;*/
font:normal 12px Arial;
line-height:18px;
z-index:100;
background-color: black;
width: 200px;
visibility: hidden;
}

.dropmenudiv a.top{
border-top:0;
}

.dropmenudiv a{
width: auto;
display: block;
text-indent: 8px;
border-top: 1px solid #666666; /*THEME CHANGE HERE*/
padding: 4px 0;
text-decoration: none;
font-weight: bold;
color: white;
}

* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
background-color: #000000;
background: url('../_images/menu/menu_blue.png') repeat-x;
}