/* CSS for drop down menu
* Chrome CSS Drop Down Menu- 
*  © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code

1/13/2007 - changed width to 800 from 600 for wider menu 
*/
.chromestyle{
	width: 800px;
	font-weight: bold;
	font: normal 12px Verdana;
}

.chromestyle:after{
	/*Add margin between menu and rest of content in Firefox*/
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

/* style for first level menu */
.chromestyle ul{
	border: 0px solid #BBB;
	width: 100%;
	background-color: #EEE8AA;
	background: url(../images/buffbk.gif) center center repeat-x; /*THEME CHANGE HERE*/
	padding: 4px 0;
	margin: 0;
	text-align: left; /*set value to "left", "center", or "right"*//*set value to "left", "center", or "right"*/
}

/* ######### Style for Drop Down Menu ######### */
.chromestyle ul li{
	display: inline;
}

.chromestyle ul li a{
	color: #006400;
	padding: 4px 7px;
	margin: 0;
	text-decoration: none;
	border-right: 1px solid #DADADA;
}

.chromestyle ul li a:hover{
	background-color: #FFF8DC; /*background: url(../images/chromebg-over.gif) center center repeat-x; /*THEME CHANGE HERE*/
	color: #191970;
}
/* Firefox will display an arrow */
/* to show just text after menu item use 2nd line, no image */
.chromestyle ul li a[rel]:after{
	content: " " url(../images/arrowdown.gif); /*uncomment this line to use an image instead*/
/*	content: "..." */
}



.dropmenudiv{
	position: absolute;
	top: 0;
	border: 1px solid #BBB; /*THEME CHANGE HERE*/
	border-bottom-width: 0;
	font: normal 11px Verdana;
	line-height: 18px;
	z-index: 100;
	background-color: #FFF8DC;
	width: 200px;
	visibility: hidden;
	filter: progid:DXImageTransform.Microsoft.Shadow(color=#CACACA,direction=135,strength=4); /*Add Shadow in IE. Remove if desired*//*Add Shadow in IE. Remove if desired*/
}


.dropmenudiv a{
	width: auto;
	display: block;
	text-indent: 3px;
	border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
	padding: 2px 0;
	text-decoration: none;
	font-weight: bold;
	color: #006400;
}

* html .dropmenudiv a{
	/*IE only hack*/
	width: 100%;
}

.dropmenudiv a:hover{
	/*THEME CHANGE HERE*/
	background-color: #F0F0F0;color: #191970
}