.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:hover {
	background: url(../images/nav-bg-hover.png) repeat-x;
}

.chromestyle ul li a{
	float: left;
	color: #FFF;
	padding: 0 18px;
	margin: 0;
	text-decoration: none;
	background: url(../images/nav-border.png) top right no-repeat;
	font-size:14px;
	font-weight:bold;
	text-transform:uppercase;
	font-family:Arial;
	z-index: 1000;
}

.chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
	color:#DDD;
 /*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;
}