.chromestyle{
font: bold 12px Verdana;
width: auto;
}

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

.chromestyle ul{
z-index:0;
margin: 0;
padding: 0;
list-style-type: none;
}

.chromestyle ul li{
position: relative;
display: inline;
float: left;
}

.chromestyle ul li a{
display: block;
background: #414141; /*background of menu items (default state)*/
color: white;
padding: 8px 10px;
border-right: 0px solid #778;
color: #2d2b2b;
text-decoration: none;
}

.chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
color: white;
}

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

.dropmenudiv{
position:absolute;
top: 2px;
font:normal 12px Verdana;
line-height:18px;
z-index:100;
background-color: #2d2b2b;
visibility: hidden;
opacity:0.9;
filter: alpha(opacity = 90);
}


.dropmenudiv a{
width: auto;
display: block;
text-indent: 3px;
padding: 2px 0;
text-decoration: none;
font-weight: bold;
color: black;
opacity:1;
}

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

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