/* ================================================================ 
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:798px;
	position:relative;
	z-index:100;
}

/* 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;
}

/* style the links for the top level */
.menu a, .menu a:visited{
	display:block;
	text-decoration:none;
	color:#fff;
	font:normal 12px Veranda,Arial,Helvetica,sans-serif;
	font-size:16px;
	font-weight:bold;
	line-height:24px;
	text-align:center;
	width:264px;
	border:1px solid #fff;
	border-width:0 1px 0 0;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul{
	visibility:hidden;
	position:absolute;
	height:0;
	top:24px;
	left:0;
	border:1px solid #000;
	border-width:1px 0 0 0;
}

.menu ul ul li{
	border:1px solid #000;
	border-width:0 0 1px 0;
}

/* 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:#fff;
	color:#000;
	height:auto;
	line-height:16px;
	padding:5px 10px;
	width:242px;
	text-align:left;
	font-weight:normal;
	font-size:12px;
	border:1px solid #000;
	border-width:0 1px 0 1px;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
	color:#000;
	background:#fff;
}

/* 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;
}

/* menu color overrides */
/*#menu0{background-color:#4A90C0;}
#menu1{background-color:#215273;}
#menu2{background-color:#2481C0;}
#menu0:hover,#menu1:hover,#menu2:hover{color:#fff;}*/

#menu0{background-color:#c60;}
#menu1{background-color:#900;}
#menu2{background-color:#c30;}
#menu0:hover,#menu1:hover,#menu2:hover{color:#ff9;}

