#chromemenu {
	width: 100%;
}

.chromestyle{
font-weight: bold;
letter-spacing: 1px;
}

.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%;
	padding: 1px 0 0;
	margin: 0;
	text-align: center; /*set value to "left", "center", or "right"*/
}

.chromestyle ul li{
	display: inline;
	margin: 0 5px 0 0;
	padding: 0 40px 0 0;
	text-transform: uppercase;
}

.chromestyle ul li.nav_first {
	padding-left: 5px;
}
.chromestyle ul li.nav_last {
	border: none;
}

.chromestyle ul li a{
	color: #0a7817;
	margin: 0;
	text-decoration: none;
  font-weight:bold;
  font-size:15px;
  font-weight: bold;
}

.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(chromebg-over.gif) center center repeat-x; /*THEME CHANGE HERE*/
	color: #900;
}

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

.dropmenudiv{
	position:absolute;
	top: 0;
	border:1px dotted #FD861D; /*THEME CHANGE HERE*/
	border-top: none;
	border-bottom-width: 0;
	font:normal 12px Verdana;
	line-height:18px;
	z-index:100;
	background-color: #F6F6F6;
	width: 200px;
	visibility: hidden;

}


.dropmenudiv a{
	width: auto;
	display: block;
	text-indent: 5px;
	border-bottom: 1px dotted #666; /*THEME CHANGE HERE*/
	padding: 2px 0;
	text-decoration: none;
	color:#0A7817;
}

.dropmenudiv a.lastindrop{
	border-bottom: 1px dotted #FD861D; /*THEME CHANGE HERE*/
}

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

.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
	background:#FFFFFF;
}

@media screen and (max-width: 600px) {
/* applies only if the screen is narrower than 600px */
	.chromestyle ul li{
		display: block;
		margin: 0;
		padding: 5px 0;
		text-transform: uppercase;
	}

}