.chromestyle{
list-style-type: none;
padding: 0;
margin: auto;
}

.chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
height: 0; 
clear: both; 
visibility: hidden;
}

.chromestyle ul{
left:0;
text-align: left; /*set value to "left", "center", or "right"*/

}

.chromestyle ul li{
display:inline;
list-style-type: none;
padding: 0;
margin: 0;
}

.chromestyle ul li a{
list-style-type: none;
padding: 0;
margin: 0;
width:80px;
}

.chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
 /*THEME CHANGE HERE*/
}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
position:absolute;
top: -28px;
margin-top:-4px;
border: 1px solid #BBB; /*THEME CHANGE HERE*/
border-bottom-width: 0;
font:normal 12px Arial;
z-index:100;
background-color:#746248;
visibility: hidden;
width: 120px;
}

.dropmenudiv a{
width: auto;
display: block;
border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
padding: 0px 0;
text-decoration: none;
color:#FCE6C6;
}

* html .dropmenudiv a{ /*IE only hack*/

}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
background-color:#504230;
color:#E87270;
}

