/* ================================================================ 
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 */
/* style all the links */
.menu a, .menu:visited {
	margin:0;
	padding:3px 18px 3px 18px;
	border-left:1px solid #C3BBA9;
	display:block;
	color:#7B3208;
	font-size:110%;
	text-decoration:none
}
.menu a:hover {
	color:#E35F01
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li {
	float:left;
	position:relative;
	z-index:100
}
/* use the table to position the dropdown list */
.menu table {
	border-collapse:collapse;
	position:absolute;
	z-index:80;
	left:-1px;
	top:25px
}
.menu ul {
	padding:143px 0 0 0;
	margin:0;
	list-style-type:none
}
.menu ul li ul li {
	padding:0;
	border-bottom:1px solid #7B3208;
	width:120px;
	background:#E1DDD4
}
.menu ul li ul li a {
	padding:2px;
	border-left:0;
	font-size:100%
}
/* style the links hover */
.menu ul li ul li a:hover {
	background:#EEEEEE
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul, .menu ul a:hover ul {
	margin:0;
	padding:0;
	display:block;
	visibility:visible
}
/* hide the sub level links */
.menu ul ul {
	border-left:1px solid #7B3208;
	border-right:1px solid #7B3208;
	border-top:1px solid #7B3208;
	visibility:hidden;
	position:absolute;
	height:0
}
