.chromestyle{
width: 100%;
padding-top:20px;
}

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

.chromestyle ul{
background:#161414; border-top-left-radius:7px; border-top-right-radius:7px; border-top:1px solid #474240;
padding:11px 0;
margin-left:37px;
text-align: center; /*set value to "left", "center", or "right"*/


}

.chromestyle ul li{
display: inline;
font-size:12px;
}

.chromestyle ul li a{
color: #ddd;
padding:15px; font-size:13px; font-weight:bold;
margin: 0;
text-decoration: none;
background:url(../images/divider.gif) right 50% no-repeat; transition: all .2s ease-in;   
}

.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(../images/divider.gif) right 50% no-repeat; color:#8D8D8D; /*THEME CHANGE HERE*/
}

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

.dropmenudiv{
position:absolute;
top: 0;
margin-top:-5px;
border: none; /*THEME CHANGE HERE*/
border-bottom-width: 0;
font:normal 11px tahoma;
line-height:18px;
z-index:100;
background-color: #161414;
width: 200px;
visibility: hidden; 
		border-top-left-radius:7px;border-top-right-radius:7px;
 
}


.dropmenudiv a{
width: auto;
display: block; font-size:13px;
text-indent: 3px;
border-bottom: 1px solid #000; border-top: 1px solid #444; /*THEME CHANGE HERE*/
padding:10px;
text-decoration: none;
color: #AAAAAA;border-top-left-radius:8px;border-top-right-radius:8px;

}

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

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