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

	
/* common styling */
.menu {
	font-family: Helvetica, Verdana, Arial, sans-serif;
	width:750px;
	height:100px;
	position:relative;
	font-size:11px;
	z-index:100;
}

.menu ul li a,.menu ul li a:visited {
	font-family:"Lucida Grande", Verdana, Arial, sans-serif;
	text-transform:uppercase;
	font-weight:bold;
	display:block;
	text-decoration:none;
	color:#000;
	width:104px;
	height:20px;
	text-align:center;
	color:#b50000;
	border:1px solid #fff;
	background:#c4c0a5;
	font-size:11px;
	overflow:hidden;
	border-bottom-left-radius: 5px;
	-moz-border-radius-bottomleft: : 5px;        /* Mozilla */
	-webkit-border-bottom-left-radius: 5px;    /* Webkit */
	border-bottom-right-radius: 5px;
	-moz-border-radius-bottomright: 5px;     /* Mozilla */
	-webkit-border-bottom-right-radius: 5px; /* Webkit */
	box-shadow: .2em .2em .2em #ccc; 
	-moz-box-shadow: .2em .2em .2em #ccc;     /* Mozilla */
	-webkit-box-shadow: .2em .2em .2em #ccc;  /* Webkit */
}

.menu ul ul li a,.menu ul ul li a:visited {
	border-bottom-left-radius: 0;
	-moz-border-radius-bottomleft: : 0;        /* Mozilla */
	-webkit-border-bottom-left-radius: 0;    /* Webkit */
	border-bottom-right-radius: 0;
	-moz-border-radius-bottomright: 0;     /* Mozilla */
	-webkit-border-bottom-right-radius: 0; /* Webkit */
}

.menu ul {
	padding:0;
	margin:0;
	list-style:none;
}

.menu ul li {
	text-decoration:none;
	font-style:normal;
	font-weight:normal;
	float:left;
	position:relative;
}

.menu ul li ul {
	display:none;
}


	
/* specific to non IE browsers */
.menu ul li:hover a {
	color:#fff;
	background:#003300;
}

.menu ul li:hover ul {
	display:block;
	position:absolute;
	top:21px;
	left:0;
	width:105px;
}

.menu ul li:hover ul li a.hide {
	background:#6f7e5a;
	color:#fff;
}

.menu ul li:hover ul li:hover a.hide {
	text-transform:none;
	background:#c3a87f;
	color:#000;
}

.menu ul li:hover ul li ul {
	display:none;
}

.menu ul li:hover ul li a {
	text-transform:none;
	display:block;
	background:#c4c0a5;
	color:#000;
}

.menu ul li:hover ul li a:hover {
	text-transform:none;
	background:#c3a87f;
	color:#000;
}

.menu ul li:hover ul li:hover ul {
	display:block;
	position:absolute;
	left:105px;
	top:0;
}

.menu ul li:hover ul li:hover ul.left {
	left:-105px;
}