.chromestyle{
width: 100%;
font-weight: bold;
}

.chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden;
}

.chromestyle ul{
border: 1px solid #F3FDEF;
width: 100%;
background-color: #006600;
/* background: url(tb_menu.jpg) center center repeat-x; */ /*THEME CHANGE HERE*/
padding: 4px 0;
margin: 0;
text-align: center; /*set value to "left", "center", or "right"*/
}

.chromestyle ul li{
display: inline;
}

.chromestyle ul li a{
padding: 4px 7px;
margin: 0;
text-decoration: none;
border-right: 0px solid #F3FDEF;
font-family : Arial;
color: #FFFFFF;
font-size : 14px;
text-decoration : none;
font-weight : bold;
}

.chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
/* background: url(tb_menu1.jpg); */ /*THEME CHANGE HERE*/
background-color: #006600;
font-family : Arial;
color : #B4F2A8;
font-size : 14px;
text-decoration : none;
font-weight : bold;

}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
position:absolute;
top: 0;
border:1px #003333 solid;
border-bottom-width: 0;
font:normal 14px Arial;
line-height:20px;
z-index:100;
background-color: #006600;
/* background: url(tb_menu.jpg); */
color: #FFFFFF;
width: 200px;
visibility: hidden;
}


.dropmenudiv a{
width: auto;
display: block;
text-indent: 3px;
border:1px #F3FDEF solid; /*THEME CHANGE HERE*/
padding: 2px 0;
text-decoration: none;
font-weight: bold;
color: #FFFFFF;
}

* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
background-color: #006600;
color : #B4F2A8;
border:1px #003333 solid; /*THEME CHANGE HERE*/

}