/*
--------------------------------------------------------------------------------
menu.css
--------------------------------------------------------------------------------
description:
	* 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
-----------------------------------------------------------------------------------
*/

@charset "utf-8";

.chromestyle{
}

.chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.chromestyle ul{
	margin: 0px 0px 0px 0px;
	padding: 5px 0px 4px 0px;

	border-top: 1px solid #999966;
	border-bottom: 1px solid #999966;
	/*border-left: 1px solid #999966;
	border-right: 1px solid #999966;*/

	text-align: center;
	font-family: microsoft sans serif;
	font-size: 0.8em;

	background-color: #e5e7b6;
}

.chromestyle ul li{
	display: inline;
	margin-right: 2px;
	margin-left: 6px;

}

.chromestyle ul li a[rel]:after{
	/*HTML to indicate drop down link*/
	content: "";
	/*content: " " url(downimage.gif); /*uncomment this line to use an image instead*/
}

.chromestyle ul li a:link    { color: #663300; font-size: 13px; font-weight: bold; text-decoration:none; }
.chromestyle ul li a:visited { color: #663300; font-size: 13px; font-weight: bold; text-decoration:none; }
.chromestyle ul li a:hover   { color: #993300; font-size: 13px; font-weight: bold; text-decoration:none; }
.chromestyle ul li a:active  { color: #993300; font-size: 13px; font-weight: bold; text-decoration:none; }

.chromestyle form {
	color: #000000;
	font-size: 9pt;
	font-weight: bold;
	display: inline;
}




/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
	position:absolute;
	visibility: hidden;

	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;

	border-style: none;

	top: 10px;
	left: 0px;

	z-index:100;

	width: 170px;

	background-color: #e5e7b6;
	/*filter: progid:DXImageTransform.Microsoft.Shadow(color=#CACACA,direction=135,strength=4); Add Shadow in IE. Remove if desired*/
}


.dropmenudiv a{
	display: block;

	margin: 0px 0px 0px 0px;
	padding: 5px 5px 5px 5px;

	border-style: none;
	text-indent: 3px;

	width: auto;

	color: #663300;
	font-family: verdana;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
}
.dropmenudiv a:hover   { background-color: #eff0cd; color: #993333;}


* html .dropmenudiv a{ /*IE only hack*/
	width: 100%;
}