.chromestyle{
width: 99%;
}

.chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden;
}

.chromestyle ul{
padding: 0;
margin: 0;
text-align: left; /*set value to "left", "center", or "right"*/
}

.chromestyle ul li{
display: inline;
font: 18px Arial, Helvetica, san serif; 
margin: 0 3px;
border-bottom: solid 1px #ccc;
border-right:  solid 1px #ccc;
}

.chromestyle ul li.last { border-right:  0px }

.chromestyle a  {
display:inline-block;
padding: 0 12px;
color: #666;
text-decoration: none;
border-bottom: none;
}

.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: #00539E;
color: #fff;
}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
position:absolute;
top: 0;
border: 1px solid #eee;
border-bottom-width: 0;
font:normal 11px Verdana, Helvetica, san serif; 
text-align:left;
line-height:18px;
z-index:100;
background-color: #f5f5f5;
width: 100px;
visibility: hidden;
}


.dropmenudiv a{
width: auto;
display: block;
text-indent: 3px;
border-bottom: 1px solid #e9e9e9; 
padding: 2px 0;
text-decoration: none;
color: black;
}

* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv a:hover{ 
background-color: #00539E;
color: #fff;
}