@charset "utf-8";
/* CSS Document */

/* === NAVIGATION === */
	
body div#listmenu ul li ul {
	display:none; /*--- Hides all drop down menus ---*/
}
div#listmenu /*--- Menu List Container ---*/
{
background-color:#bcb688;
padding:0px 0px 0px 0px;
height:28px;
width:1000px;
font-size:12px;
font-family:Georgia, serif;
font-weight:bold;
margin:0px;
float:left;
}

	div#listmenu ul	{
	padding:0px;
	margin:0px 0 0 62px;
	}

	div#listmenu li		{
	float:left; /*--- Causes the list to align horizontally instead of stack ---*/
	position:relative; /*--- Positioning context for the absolutely positioned drop-down ---*/
	list-style-type: none; /*--- Removes the bullet off list items ---*/
	margin:0px 0px;
	padding:6px 0;
	height:16px;
	z-index:5;
	}
	
	div#listmenu li:hover	{
	background-color:#918d6a;
	}

		div#listmenu li.contact		{
		float:left; /*--- Causes the list to align horizontally instead of stack ---*/
		position:relative; /*--- Positioning context for the absolutely positioned drop-down ---*/
		list-style-type: none; /*--- Removes the bullet off list items ---*/
		margin:0px 0px;
		padding:6px 0;
		height:16px;
		background-color:#8a1e04;
		}
		
		div#listmenu li.contact:hover	{
		background-color:#641401;
		}

	
	div#listmenu ul li a	{
	color:#FFFFFF;
	text-decoration:none;
	padding:6px 10px;
	
	}

div#listmenu ul li:hover ul		{
	display:block; /*--- Displays appropriate drop down menu ---*/
}
	
/*--- DROPDOWNS ---*/

div#listmenu ul li ul
{
	margin:0px; /*--- Prevents the temp margin on the ul from inheriting here ---*/
	position:absolute; /*--- Positions the drop-down ul in relation to its relatively positioned li parent ---*/
	left:0px; /*--- Aligns the drop-down exactly under the menu ---*/
	top:28px;
	padding:0px;	
	width:225px;
	z-index:5;
}

div#listmenu ul li ul li
{
	width:100%; /*--- Makes the list items fill the list containers (ul) ---*/
	border-bottom:1px solid #a4a078;/*--- Three sides of each drop-down item ---*/
	padding:4px 9px;
	margin:0px;
	height:auto;
	background-color:#918d6a;
	display:block;
	z-index:5;
}

div#listmenu ul li ul li.top	{
	border-top:1px solid #a4a078;
}

div#listmenu ul li ul li:hover {
background-color:#8a1e04;
}

div#listmenu ul li ul li a	{
	display: block;
	font-weight:normal;
	width:100%;
	padding:0px 0px 0px 0px;
	margin:0px;
	color:#FFFFFF;
	font-size:11px;
	text-decoration:none;
	font-weight:normal;
}

div#listmenu ul li ul li a:hover	{
	display: block;
	width:100%;
	font-weight:normal;
	padding:0px 0px 0px 0px;
	margin:0px;
}
