.chromestyle{
width: 100%;
color:white;
font-size:13px;
}

.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 #BBB;*/
width: 100%;
background-color:#819BDE;
padding: 4px 0;
margin: 0;
text-align: center; /*set value to "left", "center", or "right"*/
}

.chromestyle ul li{
display: inline;
font-weight:bold;
}

.chromestyle ul li a{
color: white;
padding: 4px 7px;
text-decoration: none;
border-right: 1px solid #DADADA;
z-index:120;
position:relative;
}

.chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
background-color:#617BCE;
z-index:120;
}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
position:absolute;
top: 0;
margin-top:-4px;
padding:0;
/*border: 1px solid #BBB; /*THEME CHANGE HERE*/
border-bottom-width: 0;
line-height:12px;
z-index:100;
background-color: white;
width: 150px;
visibility: hidden;
}


.dropmenudiv a{
width: auto;
display: block;
text-indent: 3px;
text-align:left;
margin-top:-1px;
border: 1px solid #DDD; /*THEME CHANGE HERE*/
border-width:1px;
text-decoration: none;
color: white;
font-weight:normal;
}

.dropmenudiv a:hover{
background-color:black;
}

* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
background-color: #F0F0F0;
}