/* ref. http://www.cssplay.co.uk/menus/dd_valid.html */


/* ================================================================ 
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: arial, sans-serif;
	width: 850px;
	height: 30px;
	position: relative;
	font-size: 11px;
	z-index: 100;
}

.menu ul li a, .menu ul li a:visited {
	display: block;
	text-decoration: none;
	color: #000;
	width: 134px; /* originally 104px */
	height: 20px;
	text-align: center;
	color: #fff;
	border: 1px solid #fff;
	background: #710069;
	line-height: 2em; /* originally 20px */
	font-size: 1em;  /* originally 11px */
	overflow: hidden;
}

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

.menu ul li {
	float: left;
	position: relative;
}

.menu ul li ul {
	display: none;
}

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

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

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

.menu ul li:hover ul li:hover a.hide {
	background: #6fc;
	color: #000;
}

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

.menu ul li:hover ul li a {
	display: block;
	background: #ddd;
	color: #000;
}

.menu ul li:hover ul li a:hover {
	background: #6fc;
	color: #000;
}

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

.menu ul li:hover ul li:hover ul.left {
	left: -135px; /* originally 105px; */
}

