/*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;
	height: 34px;
	z-index: 100;
	position: relative;
	width: 100%;
	list-style: none;
	text-align: center;
}
#nav LI
{
	text-align: center;
	display: block;
	float: left;
	height: 34px;
	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: #FFFFFF;
}
#nav LI A.active
{
	background: url(../images/nav_over.jpg) repeat-x 0 0;
	color: #FFFFFF;
	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: 34px;
	float: left;
}
#nav LI.right
{
	background: url(../images/nav_r.jpg) no-repeat right top;
	width: 36px;
	height: 34px;
	float: right;
}
#nav LI UL
{
	display: none;
	width: 170px;
	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=90);
  	opacity: 0.90;
}
#nav LI UL LI
{
	border: 0;
	height: 25px;
	color: #99FF00;
	background: #111;
	margin: 0;
}
#nav LI UL LI A
{
	display: block;
	height: 25px;
	width: 140px;
	padding: 0 20px 0 15px;
	border-top: 1px solid #333;
	white-space: nowrap;
	background: #000;
	color: #FFFFFF;
	text-align: left;
	line-height: 25px;
	font-weight: normal;
}
#nav LI UL LI A:hover
{
	color: #99FF00;
	background: #111;
}
#nav LI.auth
{
	float: right;
}
#nav LI.auth A
{
	color: #66FF00;
	font-family: "Trebuchet MS";
}
#nav LI.auth A.logged_in
{
	background: none;
}
#nav LI.auth A:hover.logged_in
{
	padding-top: 5px;
}
#nav LI.auth A.logged_in SPAN
{
	line-height: 5%;
	color: #777;
	font-size: 0.8em;
}
#nav LI.auth A:hover.logged_in SPAN
{
	color: #FFFFFF;
	font-size: 1em;
	line-height: 20%;
}
/*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;
}
HTML:first-child #nav LI UL LI A
{
	height: 25px;
	line-height: 25px;
}
