.chromestyle {
	width: 100%;
	font: bold x-small Arial;
	}

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

.chromestyle ul	{
	width: 100%;
	background-color: #cbcccd;
	padding: 8px 0;
	margin: 0;
	text-align: center; /* set value to "left", "center", or "right" */
}

.chromestyle ul li{
display: inline;
}

.chromestyle ul li a{
	color: #000;
	padding: 8px 12px;
	margin: 0;
	text-decoration: 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: #71c19e;
	}

/* ######### Style for Drop Down Menu ######### */
.dropmenudiv{
	position: absolute;
	top: 0;
	border: 1px solid #bbb;
	border-bottom-width: 0;
	font: bold x-small Arial,sans-serif;
	line-height: 150%;
	z-index: 100;
	background-color: #fff;
	width: 175px;
	visibility: hidden;
	}
.dropmenudiv a{
	width: auto;
	display: block;
	border-bottom: 1px solid #bbb; /*THEME CHANGE HERE*/
	padding: 5px;
	text-decoration: none;
	font-weight: bold;
	color: #000;
	}

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

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