/* drop down menu - Main Navigation */
/* http://dev.visualdrugs.net/mootools/dropdown_menu.html */

#nav {
	
	display: block;
	background: transparent url(../images/nav_bg.jpg) repeat-x left top;
	padding: 0;
	margin: 0 10px 0 10px;
	height: 34px;
	z-index: 100;
  	position: relative;
	width: 97.8%;
	list-style: none;
	text-align: center;
}

#nav li {
	text-align: center;
	display: block;
	float: left;
	height: 30;
	margin: 0;
	padding: 0;
	position: relative;
	background: url(../images/nav_sep.jpg) no-repeat 0 0;
}

#nav li a {
	float: left;
	height: 25px;
	padding: 0 15px;
	padding-top: 9px;
	color: #ccc;
	font-size: 0.9em;
	margin-left: 2px;
}

#nav li a:hover {
	background: url(../images/nav_over.jpg) repeat-x 0 0;
	color: white;
}

#nav li a.active {
	background: url(../images/nav_over.jpg) repeat-x 0 0;
  	color: white;
	font-weight: bold;
}

#nav li.sep {
	background: url(../images/nav_sep.jpg) no-repeat 0 0;
	width: 2px;
	height: 34px;
	float: left;
}

#nav li.left {
	background: url(../images/nav_l.jpg) no-repeat left top;
	width: 36px;
	height: 30px;
	float: left;
}

#nav li.right {
	background: url(../images/nav_r.jpg) no-repeat right top;
	width: 36px;
	height: 34px;
	float: right;
}

#nav li ul {
	font:90% Verdana, Arial, Helvetica, sans-serif;
	display: none;
	width: 210px;
	position: absolute;
	top: 34px;
	left: 0;
	margin: 0;
	padding: 0;
	/* Transparent background for drop down menu */
  	background:transparent filter: alpha(opacity=90);
  	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
	opacity:0.70;
}

#nav li ul li {
	border: 0;
	height: 25px;
	color: #339999;
	background: #111;
	margin: 0;
}

#nav li ul li a {
	display: block;
	height: 25px;
	width: auto;
	padding: 0 20px 0 8px;
	border-top: 1px #333 solid;
	white-space: nowrap;
	background: #000;
	color: white;
	text-align: left;
	line-height: 25px;
	font-weight: normal;
	width: 180px;
}

#nav li ul li a:hover {
	color: #339999;
	background: #111;
}

/* Hacks for Opera to fix the drop down menu problem */
html:first-child #nav li a {
	float: none;
	height: 34px;
	padding-top: 0;
	line-height: 34px;
	display: block;
	font-family: Verdana, Geneva, sans-serif;
}
html:first-child #nav li ul li a {
  	height: 25px;
  	line-height: 25px;
}
