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


/* remove the bullets, padding and margins from the lists */
#nav .menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

/* make the top level links horizontal and position relative so that we can position the sub level */
#nav .menu li {
	float: left;
	position: relative;
	z-index: 100;
}

/* use the table to position the dropdown list */
#nav .menu table {
	position: absolute;
	border-collapse: collapse;
	z-index: 80;
	left: -1px;
	top: 25px;
}

/* style all the links */
#nav .menu a, .menu :visited {
	display: block;
	line-height: 1em;
	width: 94px;
  	height: 16px;
	padding: 7px 0;
	color: #fff;
	background: #6d682a;
	text-decoration: none;
	margin-right: 1px;
	text-align: center;
	border-right: 1px solid #56550b;
	border-left: 1px solid  #838250;
}

#nav .menu a.deep, .menu a.deep:visited {
	height: 26px;
}

#nav .menu a.end, .menu a.end:visited {
	display: block;
	line-height: 1em;
	width: 95px;
	height: 16px;
	padding: 7px 0;
	color: #fff;
	background: #6d682a;
	text-decoration: none;
	margin-right: 1px;
	text-align: center;
	border-right: 0;
	border-left: 0;
}

/* style the links hover */
#nav .menu :hover {
	color: #fff;
	background: #5f5b26;
}

/* hide the sub level links */
#nav .menu ul ul {
	visibility: hidden;
	position: absolute;
	width: 94px;
	height: 0;
}

/* make the sub level visible on hover list or link */
#nav .menu ul li:hover ul,
#nav .menu ul a:hover ul {
	visibility: visible;
}
