/* ================================================================ 
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 */
.menu ul{
	list-style-type:none;
	padding:0;
	margin:0;
	background:url(/img/nav_bg-tile.jpg) repeat-x #ffffff;
	height:31px;
	z-index:1000;
}

/* 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;
	color:#ffffff;
	font-weight:bold;
	text-transform:uppercase;
	font-size:11px;
	padding:0 16px 0 16px;
	/*border:1px solid red;*/
}

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

/* style all the links */
.menu a, .menu :visited {
	display:block;
	font-size:10px;
	width:168px;
	color:#ffffff;
	text-decoration:none;
	font-size:11px;
	font-weight:bold;
}

/* style the links hover */
.menu a:hover{
	color:#000000;
	background:none;
}

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

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

/* custom ==================================================================== */

/* search form */
.menu form {
	margin-top:7px;
}
.menu form input.text {
	padding:1px 3px 1px 3px;
	margin-right:8px !important;
	height:12px;
	font-size:10px;
	width:120px;
	float:left;
}
.menu form input.submit {
	float:left;
	clear:right;
	padding:0 !important;
	border:0 !important;
	background:none !important;
}

/* link style in top nav */
.menu a.top {
	color:#ffffff;
	height:23px;
	width:100%;
	padding:8px 0 0 0;
	text-align:center;
	text-transform:uppercase;
}
.menu a.top:hover{
	color:#000000;
	background:none;
}
.menu ul ul li a {
	font-size:11px !important;
	padding:2px !important;
}
.menu ul ul li a:hover {
	color:#000000 !important;
}
.menu li.search {
	padding-right:0px !important;
}
.menu li.current {
	background:url(/img/nav_bg-tile-on.jpg) repeat-x #ffffff;
}
.menu li.current a {
	color:#000000 !important;
}
.menu li li {
	padding:5px;
	text-transform:none;
	/*background:url(/img/nav_bg-tile-drop.gif) repeat-y #ffffff;*/
	background:#ffffff;
	border-width:0 1px 1px 1px;
	border-style:solid;
	border-color:#dcdcdc;
	margin-left:-19px;
	text-align:left;
}
.menu li li a, .menu li.current li a {
	color:#02599e !important;
}

/* lines */
.menu li#cap-right {
	background:url(/img/nav_cap-right.jpg) no-repeat;
	width:2px;
	height:31px;
	padding:0;
	margin:0;
	float:right;
}
.menu li#div-left {
	background:url(/img/nav_div-left.jpg) no-repeat;
	width:2px;
	height:31px;
	padding:0;
	margin:0;
}
.menu li#div-right {
	background:url(/img/nav_div-right.jpg) no-repeat;
	width:2px;
	height:31px;
	padding:0;
	margin:0;
}
.menu li#div-left.current {
	background:url(/img/nav_div-left-on.jpg) no-repeat;
	width:2px;
	height:31px;
	padding:0;
	margin:0;
}
.menu li#div-right.current {
	background:url(/img/nav_div-right-on.jpg) no-repeat;
	width:2px;
	height:31px;
	padding:0;
	margin:0;
}
