/* CSS Document */



/* ================================================================ 
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/simple_dropline.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */


/* the styling */

#nav {
	width: 800px;
	height: 24px;
	background: navy;
	position: relative;
	margin: 0 0 25px;
}

#nav .select, #nav .current {
	margin: 0;
	padding: 0;
	list-style: none;
}

#nav li {
	display: inline;
	margin: 0;
	padding: 0;
	height: auto;
}

#nav .select a,
#nav .current a {
	display: block;
	height: 24px;
	float: left;
	background: navy;
	padding: 0 6px 0 6px;
	text-decoration: none;
	font: 12px/24px Futura, Arial, Helvetica, sans-serif;
	white-space: nowrap;
	border-right: 1px solid #fff;
	color: #fff;
}

* html #nav .select a, * html #nav .current a {
	width: 1px;
	height: 24px;
}

#nav .select a:hover, 
#nav .select li:hover a {
	background: silver;
	cursor: pointer;
	color: navy;
	border-top: 1px solid navy;
}

#nav .sub {
	display: none;
	border-bottom: 1px solid navy;
}

/* for IE5.5 and IE6 only */

#nav table {
	position: absolute;
	border-collapse: collapse;
	left: 0;
	top: 0;
}

#nav .current a {
	background: blue;
	color: white;
}

#nav .sub li a:hover, 
#nav .select a:hover .sub li a:hover, 
#nav .select li:hover .sub li a:hover {
	background: gray;
	color: white;
}

#nav .sub_active .current_sub a, 
#nav .sub_active a:hover {
	background: silver;
	color: navy;
}

#nav .select li a:hover .sub, 
#nav .select li:hover .sub {
	display: block;
	position: absolute;
	width: 800px;
	top: 20px;
	left: 0;
	background: silver;
	padding: 0;
	z-index: 100;
	color: navy;
	font-size: 11px;
	margin-top: 4px;
}

#nav .sub, #nav .sub_active {
	margin: 0;
	padding: 0;
	list-style: none;
}

#nav .sub_active {
	display: block;
	position: absolute;
	width: 100%;
	top: 24px;
	left: 0;
	background: gray;
	margin-top: 0;
	padding: 0;
	z-index: 10;
	color: navy;
}

* html #nav .sub_active, * html #nav .select a:hover .sub {
	z-index: -1;
	margin-top: 0;
	margin-t\op: 1px;
}

#nav .sub_active a {
	height: 12px;
	text-decoration: none;
	line-height: 20px;
	white-space: nowrap;
	display: block;
	float: left;
	background: navy;
	padding: 5px 10px 6px 0px;
	margin: 0;
	font-size: 12px;
	white-space: nowrap;
	border: 0;
	color: aqua;
}

#nav .select a:hover .sub li a, 
#nav .select li:hover .sub li a {
	display: block;
	background: silver;
	padding: 3px 6px 6px 6px;
	margin: 0;
	white-space: nowrap;
	border: 0;
	color: navy;
	font-size: 10px;
	border-right: 1px solid gray;
	line-height: 12px;
	height: 12px;
}

