/* ================================================================ 
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-2009 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* remove the bullets, padding and margins from the lists */
.menu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
/* 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;
	left: -1px;
	position: absolute;
	top: 33px;
	z-index: 80;
}
/* style all the links */
.menu a {
	border-bottom: 2px solid #E46F20;
	display: block;
	font-size: 14px;
	font-weight: bold;
	line-height: 16px;
	padding: 7px 0;
	text-decoration: none;
	text-align: center;
	width: 140px;
}
.menu a:link {
	background: #F2F2F2;
	color: #19A0DA;
}
.menu a:visited {
	background: #F2F2F2;
	color: #19A0DA;
}
.menu a:hover {
	background: #E5E5E5;
	color: #000;
}
.menu a:active {
	background: #F2F2F2;
	color: #000;
}
/* hide the sub level links */
.menu ul ul {
	height: 0;
	position: absolute;
	visibility: hidden;
	width: 140px;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul, .menu ul a:hover ul {
	visibility: visible;
}