/* ================================================================ 
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.
=================================================================== */

.dropmenu {
	width:					696px;
	z-index:				100;
}

/* remove all the bullets, borders and padding from the default list styling */
.dropmenu ul {
	padding:				0px;
	margin:					0px;
	list-style-type:		none;
}
.dropmenu ul ul {
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.dropmenu li.main {
	text-align:				center;
	float:					left;
	position:				relative;
}
.dropmenu li {
	text-align:				left;
	float:					left;
	position:				relative;
}
.dropmenu li.submenu {
	text-align:				left;
	float:					left;
	position:				relative;
}

/* style the links for the top level */
.dropmenu a, .dropmenu a:visited {
	display:				block;
	font-size:				11px;
	text-decoration:		none;
	color:					#fff; 
	height:					30px; 
	border-right:			1px solid #fff;
	border-top:				1px solid #fff;
	background:				#418ADE; 
	line-height:			29px;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .dropmenu a, * html .dropmenu a:visited {
	width:					200px;
	w\idth:					189px;
}

/* style the second level background */
.dropmenu ul ul a.drop, .dropmenu ul ul a.drop:visited {
	background:				#7AADE8;
}

/* style the second level hover */
.dropmenu ul ul a.drop:hover{
	background:				#7AADE8;
}
.dropmenu ul ul :hover > a.drop {
	background:				#7AADE8;
}
/* style the third level background */
.dropmenu ul ul ul a, .dropmenu ul ul ul a:visited {
	background:				#B3D0F2;
}
/* style the third level hover */
.dropmenu ul ul ul a:hover {
	background:				#FF9000;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.dropmenu ul ul {
	visibility:				hidden;
	position:				absolute;
	height:					0;
	top:					31px;
	left:					0; 
}
/* another hack for IE5.5 */
* html .dropmenu ul ul {
	top:					30px;
	t\op:					31px;
}

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

/* style the table so that it takes no ppart in the layout - required for IE to work */
.dropmenu table {
	position:				absolute; 
	top:					0; 
	left:					0;
}

/* style the second level links */
.dropmenu ul ul a, .dropmenu ul ul a:visited {
	background:				#7AADE8; 
	color:					#000; 
	height:					auto; 
	line-height:			1em; 
	padding:				5px 10px;

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


/* style the top level hover */
.dropmenu a:hover, .dropmenu ul ul a:hover{
	color:					#fff; 
	background:				#FF9000;
}
.dropmenu :hover > a, .dropmenu ul ul :hover > a {
	color:					#fff;
	background:				#FF9000;
}

/* make the second level visible when hover on first level list OR link */
.dropmenu ul li:hover ul,
.dropmenu ul a:hover ul{
	visibility:				visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.dropmenu ul :hover ul ul{
	visibility:				hidden;
}

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