/* ================================================================ 
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 */
#nav li a {
	display: block;
	padding-left: 13px;
	padding-right: 13px;
	line-height: 28px;
	color: white;
	font-weight: bold;
	text-decoration: none;
}
#nav {
	padding:0; 
	margin:0; 
	list-style: none;
}
#nav li {
	float:left; 
	position:relative;
}
#nav li ul {
	background: #ccc;
	display: none;
	list-style: none;
	margin: 0px;
	padding: 0px;
}

/* specific to non IE browsers */
#nav li:hover a {
	background: url(../img/nav_bg.jpg) repeat-x;
}
#nav li.active {
	background: url(../img/nav_bg.jpg) repeat-x;
}
#nav li:hover ul {
	display:block; 
	position:absolute; 
	top:28px; 
	left:0; 
}
#nav li:hover ul li a.hide {
	background:#6a3; 
	color:#fff;
}
#nav li:hover ul li:hover a.hide {
	background:#6fc; 
	color:#000;
}
#nav li:hover ul li ul {
	display: none;
}
#nav li:hover ul li a {
	display:block; 
	background: #ccc;
	color:#000;
	width: 130px;
	border-bottom: dotted black 1px;
}
#nav li:hover ul li a:hover {
	color: red;
}
#nav li:hover ul li:hover ul {
	display:block;
	position:absolute;
	left:105px;
	top:0;
}
#nav li:hover ul li:hover ul.left {
	left:-105px;
}
