.chromestyle{
width: 700px;		/* width of whole menu   % or px*/
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
}	

.chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden;
}

.chromestyle ul{
border: 0px solid #555555;	/* border around whole thing */
width: 100%;			
background: #DDD8B1; 		/* tan main menu background*/
padding: 4px 0;				/* top & Bottom space */
margin: 0; 					/* far left and far right space */
text-align: center; 		/*set value to "left", "center", or "right"*/
}

.chromestyle ul li{
display: inline;
}

.chromestyle ul li a{
color: #182958; 					/* dark blue main menu text color*/
padding: 4px 7px;
margin: 0;
text-decoration: none;
font-weight: bold;
border-right: 5px solid #FFFFFF;	/* white gap between menu blocks */
}

.chromestyle ul li a:hover{
background: #182958; 			/* dark blue main menu mouse over color*/
color: #DDD8B1; 					/* tan main menu text color*/

}

.chromestyle ul li a[rel]:after{ /*HTML to indicate drop down link*/
/*content: " v"; */
/*content: " " url(downimage.gif); /*uncomment this line to use an image instead*/
}


/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
position:absolute;
top: 0;
border: 1px solid #BBB; /*THEME CHANGE HERE*/
border-bottom-width: 0;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
line-height:18px;
z-index:100;
background-color: #DDD8B1;
width: auto;
visibility: hidden;
/*filter: progid:DXImageTransform.Microsoft.Shadow(color=#CACACA,direction=135,strength=4); Add Shadow in IE. Remove if desired*/
}

* html .dropmenudiv { /*IE only hack*/
position:absolute;
top: 0;
border: 0px solid #BBB; /*THEME CHANGE HERE*/
border-bottom-width: 0;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
line-height:18px;
z-index:100;
background-color: #DDD8B1;   /* tan background */
width: 200px;
visibility: hidden;
}


.dropmenudiv a{
width: auto;
display: block;
text-indent: 3px;
border-bottom: 0px solid #BBB; /*THEME CHANGE HERE*/
padding: 2px 0;
padding-right: 3px;
text-decoration: none;
color: #182958;				/* dark blue text */
}

* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv a:hover{ 			/*THEME CHANGE HERE*/
background-color: #182958;    	/* dark blue background */
color: #DDD8B1; 				/* tan  text color*/
}