/* ================================================================ 
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 {
	width:				705px;
	height:				100px;
	float:				left;
	background: 		#fff url(../gfx/site/menu_background.png) repeat-y fixed top;
	position:			relative;
}

.menu ul li {
	float:left;
	list-style-image:	none;
	list-style-position:outside;
	list-style-type:	none;
	padding:			40px 3px 0px 5px;
	border-left:		1px solid #ccc;
}
.menu ul li.active a {
	background-color:	#f04707;
	color:				#fff;
}
.menu ul li.first {
	list-style-image:	none;
	border-left:		0px solid #ccc;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	list-style-type:none;
	clear: 				both;
	padding:			34px 0px 0px 20px;
	margin-bottom:		10px;
}
.menu ul ul {

}

.menu ul ul li {
	padding:		0px;
	border-left:	0px solid #fff;
}
/* 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:visited {
	display:		block;
	font-size:		11px;
	text-decoration:none; 

	padding-left:	5px; 
	padding-right:	5px; 
	padding-bottom:	3px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menus a, * html .menus a:visited {
width:119px;
w\idth:108px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background-color:	#f04707;

}
/* style the second level hover */
.menu ul ul a.drop:hover{
background-color:	#f04707;
}
.menu ul ul :hover > a.drop {
background-color:	#f04707;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
background:#f0f0f0;
}
/* style the third level hover */
.menu ul ul ul a:hover {
background:#c6ab50;
}

div.menu ul ul li {
	padding:	0px ;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	top:				56px;
	left:				5px; 
	width:				150px;
	padding:			10px 0px 3px;
	background-color: 	#f04707;	

}
/* another hack for IE5.5 */
* html .menu ul ul {
top:55px;
t\op:56px;
}

* html .menus ul li{
width: 150px;
}

/* position the third level flyout menu */
.menu ul ul ul{
left:100px; 
top:0;
width:119px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-119px;
}

/* style the table so that it takes no part 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-color:	#f04707;
	color:#fff; 
	height:auto; 
	line-height:1em; 
	
	width:140px;


/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:150px;
w\idth:150px;
}

/* style the top level hover */
.menu a:hover {
color:#fff; 
background:#f04707;
}
.menu :hover > a {
color:#fff;
background:#f04707;
}

/* style the second level hover */
.menu ul ul a:hover {
color:#fff;
background:#380d5a; 	
}
.menu ul ul :hover > a {
color:#fff;
background:#380d5a; 	
}


/* 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{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
visibility:visible;
}

