.chromestyle{
width: 99%;
<* font-weight: bold;  *>
font:bold 22px Times Roman;
}

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

.chromestyle ul{
border: 7px solid #BBB;   <* gray border around the menu bar *>
width: 100% ; 
background:  center center repeat-x; /*  url(chromebg4.gif)*/
padding: 13px 0;    <* makes menu bar box bigger *>
margin: 0;    <* where to start the beginning of the bar *>
text-align: left ; /* where to put buttons within the bar*/
}

.chromestyle ul li{
display: inline;
}

.chromestyle ul li a{
color: #000080;
padding: 13px 13px;   <* controls the vertical lines between the menu items *>
margin: 0;    
text-decoration: none;
border-right: 3px solid #BBB;    <* color of the vertical bars between the menu items *>   
}

.chromestyle ul li a:hover{
background: white center center repeat-x; /* url(chromebg-over.gif)*/
}

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


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

.dropmenudiv{
position:absolute;
top: 10;
border: 2px solid #BBB;  
border-bottom-width: 0;
font:bold 22px Times Roman;
line-height:40px;   
z-index:100;
background-color: #D8E6E7;   <* was white this is the color behind the submenu items words *>
width: 190px;   
visibility: hidden;
}


.dropmenudiv a{
width: auto;
display: block;
text-indent: 4px;
border-bottom: 4px solid #BBB; 
padding: 4px 0;   
text-decoration: none;
font-weight: bold;
color: #000080;
}

* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
background-color: #F8F8F8;  
}

