/* ================================================================ 
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.1em;
	z-index: 100;
	line-height: 2.05em;
	position: absolute;
	width: 850px;
	height: 2em;
	margin-top: 10px;
	margin-right: 25px;
	margin-left: 25px; }

.menu ul  															{
	font-weight: bold;
	text-transform: none;
	list-style-type: none;
	list-style-image: none;
	margin: 0;
	padding: 0; }
	
.menu ul ul  														{
	width: 200px;
	padding-top: 6px;}
	
/* 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; }

/* style the links for the top level */
.menu a, .menu a:link, .menu a:visited, .menu a:hover, .menu a:active {
	color: #fff;
	font-variant: small-caps;
	text-align: center;
	text-decoration: none;
	display: block;
	background-image: none;
	padding-right: 5px;
	padding-left: 5px;
	border-right: 1px solid #fff; }

/* style the second level background */
.menu ul ul a, .menu ul ul a:link, .menu ul ul a:visited, .menu ul ul a:hover, .menu ul ul a:active 			{
	width: 170px;
	text-align: left;
	background-color: #494949;
	padding-right: 5px;
	padding-left: 5px;
	border-bottom: 1px solid #fff;
	-moz-opacity:0.8;
	filter:alpha(opacity=80); }
	
.menu ul ul a:hover 												{
	-moz-opacity:1;
	filter:alpha(opacity=100);  }
	
* html .menu ul ul a, * html .menu ul ul a:link, * html .menu ul ul a:visited, * html .menu ul ul a:hover, * html .menu ul ul a:active												{
	-moz-opacity:1;
	filter:alpha(opacity=100);  }

.menu ul ul ul a, .menu ul ul ul a:link, .menu ul ul ul a:visited, .menu ul ul ul a:hover, .menu ul ul ul a:active   			{
	width: 130px;
	font-size: 0.8em;
	font-weight: normal;
	font-variant: normal;
	text-transform: uppercase; }

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul															{
	visibility: hidden;
	position: absolute;
	z-index: 200;
	top: 2em;
	margin-left: -1px;
	height: 0; }
* html .menu ul ul 													{ left: 0; }

/* position the third level flyout menu */
.menu ul ul ul								 						{
	position: absolute;
	z-index: 200;
	top: -6px;
	left: 182px; }
* html .menu ul ul ul 													{ left: 171px; }

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table 														{
	position:absolute;
	z-index: 200;
	top:0;
	left:0;
	font-size:1em;
	line-height: 2em; }

/* style the top level hover */
.menu a:hover 														{ background-color: transparent }
* html .menu a:hover 														{ background-color:#494949; }
.menu :hover > a 													{  } 

.menu ul ul a:hover, 
.menu ul ul a:active,
.menu ul ul :hover > a												{ }

/* 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; }

/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul,
.menu ul :hover ul :hover ul ul 									{ visibility:hidden;}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul,
.menu ul :hover ul :hover ul :hover ul								{ visibility:visible;}
