.Menu{
width: 100%;
font-weight: bold;
font-size:100%;
}

.Menu:after{ /*Add margin between menu and rest of content in Firefox*/
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden;
}

.Menu ul{
border: 1px solid #BBB;
width: 100%;
background: url(../NewImages/Bar.jpg) center center repeat-x; /*THEME CHANGE HERE*/
height:22px;
padding:0px;
margin: 0;
text-align: center; /*set value to "left", "center", or "right"*/
}

.Menu ul li
{
width: 100px;
display: inline;
float:left;
border-right: 1px solid #DADADA;
height:22px;
}

.Menu ul li a{
color: #000000;
padding-left:15px;padding-right:15px;
font-family:Arial;
font-size:9pt;
color:Black;
text-decoration: none;
}

.Menu ul li a:hover{ /*script dynamically adds a class of "selected" to the current active menu item*/
/*background: url(chromebg-over.gif) center center repeat-x; /*THEME CHANGE HERE*/
color:Maroon;
}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
position:absolute;
top: 10px;
border: 1px solid #BBB; /*THEME CHANGE HERE*/
border-bottom-width: 0;
font:normal 8.5pt Arial;
line-height:18px;
z-index:250;
background-color: white;
width: 300px;
visibility: hidden;
text-align:left;

}


.dropmenudiv a{
width: 500px;
display: block;
text-indent: 3px;
border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
padding: 2px 0;
text-decoration: none;
font-weight: bold;
color: black;
}

* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
color:Maroon;                
background-color: #f8f6ee;

}