.chromestyle {
width: 100%;
}

.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: 4px 0;
	margin: 0;
	text-align: right;
}

.chromestyle ul li{
display: inline;
}

.chromestyle ul li a{
	color: #3F1F10;
	margin: 0;
	text-decoration: none;
	padding-top: 4px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 10px;
}

.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:#c2ae77;/*THEME CHANGE HERE*/
}

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

.dropmenudiv{
position:absolute;
top: 0;
border-bottom-width: 0;
font:normal 13px Verdana;
line-height:18px;
z-index:1200; /* This puts it above the slideshow which is set to zindex of 1000 in javascript */
background-color: #b39d64;
width: 200px;
visibility: hidden;
}


.dropmenudiv a{
	width: auto;
	display: block;
	text-indent: 3px;
	border-bottom: 1px solid #BBB;
	text-decoration: none;
	color: #3F1F10;
	padding-top: 5px;
	padding-right: 4px;
	padding-bottom: 5px;
	padding-left: 4px;
}

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

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