.chromestyle {
	float: right;
}
.chromestyle:after { /*Add margin between menu and rest of content in Firefox*/
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.chromestyle ul {
	border: 1px thin none;
	width: 100%;
	background-image:url(../../images/menu_bg2.jpg);
	background-repeat: repeat-x;
	padding: 2px 0;
	margin: 0;
	text-align: center; /*set value to "left", "center", or "right"*/
}
.chromestyle ul li {
	display: inline;
}
.chromestyle ul li a {
	color: #C9C9C9;
	padding: 3px 12px;
	margin: 0;
	text-decoration: none;
	font-size:1em
}
.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/menu_bg2-over.jpg) repeat-x; /*THEME CHANGE HERE*/
	color: #FFF;
}
/* ######### Style for Drop Down Menu ######### */

.dropmenudiv {
	position:absolute;
	top: 0px;
	border: 1px solid #222; /*THEME CHANGE HERE*/
	font:normal 1em;
	line-height:18px;
	z-index:100;
	background-color: #333;
	width: 170px;
	visibility: hidden;
    filter: progid:DXImageTransform.Microsoft.Shadow(color=#333333, direction=135, strength=4); /*Add Shadow in IE. Remove if desired*/
}
.dropmenudiv a {
	width: auto;
	display: block;
	text-indent: 3px;
	color:#D8D8D8;
	border-bottom: 1px solid #222; /*THEME CHANGE HERE*/
	padding: 2px 0;
	text-decoration: none;
}
.dropmenudiv span {
	width: auto;
	color:#666;
	display: block;
	text-indent: 3px;
	border-bottom: 1px solid #222; /*THEME CHANGE HERE*/
	padding: 2px 0;
	text-decoration: none;
	font-weight: bold;
}
* html .dropmenudiv a {
	width: 100%
}/*IE only hack*/
.dropmenudiv a:hover {
	background-color: #555;
	color:#FFF
}
