.chromestyle{
	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: 0 solid #333;
	width: 100%;
	padding: 0;
	margin: 0;
	text-align: center; /*set value to "left", "center", or "right"*/
}

.chromestyle ul li{
	display: inline;
}

.chromestyle ul li a{
	float: left;
	color: #ffcf43;
	padding: 0 28px 0 28px;
	margin: 0;
	text-decoration: none;
	border-right: 0px solid #DADADA;
	font-size:15px;
	font-weight:bold;
	text-transform:none;
	font-family:Arial;
}

.chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
	color:#FFF;
 /*THEME CHANGE HERE*/
}

.chromestyle ul li a img{ margin-bottom:2px;}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
	position:absolute;
	margin: -1px 0 0 0;
	top: 0;
	border: 1px solid #000; /*THEME CHANGE HERE*/
	border-top: none;
	z-index:1000;
	background-color: #FFF;
	width: 200px;
	visibility: hidden;
}


.dropmenudiv a{
	width: auto;
	display: block;
	text-indent: 3px;
	line-height: 26px;
	border-top: 1px dotted #000; /*THEME CHANGE HERE*/
	padding: 0 0 0 5px;
	text-decoration: none;
	font-weight: normal;
	color: #000;
}

.dropmenudiv a.firstitem{
	border-top: none;
}

* html .dropmenudiv a{ /*IE only hack*/
	width: 100%;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
	background-color: #FFF;
	color:#000;
	text-decoration: underline;
}