/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_drop.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

	.menu {
	font-size:1.0em;
	position:relative;
	z-index:100;
	padding: 0 0 0 166px;
	}

	/* remove all the bullets, borders and padding from the default list styling */
	.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	}

	/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
	.menu li {
	float:left;
	position:relative;
	text-align:left;
	}
	
	/* style the links for the top level */
	.menu ul a, .menu ul a:visited {
	display:block;
	font-family: Tahoma,Arial,sans-serif;
	font-size:0.92em;
	text-decoration:none; 
	color:#fff; 
	height:26px; 
	border:1px solid #544E4A; 
	border-width:0 1px 0 0; 
	background:#544E4A; 
	padding-left:0; 
	padding-right:3px;
	line-height:2.4em;
	}
	
	.menu a:hover 
	{
		text-decoration:none;
	} 
	/*   
	
	#navhere 
	{
		background:#a3742f;
	}*/
	
	/* hide the sub levels and give them a positon absolute so that they take up no room */
	.menu ul ul {
	visibility:hidden;
	position:absolute;
	font-family: Tahoma,Arial,sans-serif;	
	left:0px; 
	bottom: 26px; /* 4px for ie6 26px for ie7 */		
	}
	
	/* style the table so that it takes no ppart in the layout - required for IE to work */
	.menu table {position:absolute; top:0; left:0;}

	/* style the second level links */
	.menu ul ul a, .menu ul ul a:visited {
	background:#544E4A; 
	color:#fff; 
	height:auto; 
	line-height:1em; 
	padding:5px 10px;
}

	/* style the top level hover */
	.menu ul a:hover, .menu ul ul a:hover{
	color:#fff; 
	background:#942125;
	}
	
	
	/*   
	.menu :hover > a, .menu ul ul :hover > a {
	color:#fff;
	background:#942125;
	}*/
	
	/* make the second level visible when hover on first level list OR link */
	.menu ul li:hover ul,
	.menu ul a:hover ul{
	visibility:visible; 
	}
