﻿/* Default Menu Structure Styles */

.nav
{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 900px;
			
	height: 19px;
	font-size: 8pt;
	text-decoration: none;

	position: relative;
	z-index: 999;
	clear: both;	
}

.nav .groups
{
	list-style-type: none;	
	display: inline;
			
	margin: 0px;
	padding: 0px;

}

.nav .groups .group
{
	display: inline;	
	
	position: relative;	
	font-family: Verdana, Arial;
	font-style: normal;
	font-size: 8pt;
	text-decoration: none;
}


.nav .items
{
	list-style-type: none;
	position: absolute;

	display: none;
	color: #d7d7a9;		
	margin: 0px;
	padding: 0px;
}

.nav  .item
{
	text-align: left;
	width: 135px;
	height: auto;
	color: #000000;

}

/* Hover Events */

.nav .groups .group a:link
{
	text-decoration: none;
}


.nav .groups .group a:visited
{
	text-decoration: none;
}

.nav .groups .group a:hover
{
	text-decoration: none;
	color: #000000;

}

.nav .items a:link
{
	text-decoration: none;
	background-color: #999966;
	width: 100% !important; 
	display: block;
	margin-top: -2px;
	padding: 5px 5px 5px 15px;
	color: #000000;
}

.nav .items a:visited
{
	text-decoration: none;
	background-color: #999966;
	width: 100% !important; 
	display: block;
	margin-top: -2px;
	padding: 5px 5px 5px 15px;
	color: #000000;
}


.nav .items a:hover
{
	text-decoration: none;
	background-color: #adad85;
	width: 100%;
	color: #000000;
}

.nav .group.hover .onstate
{
	display: inline !important;
}


.nav .group:hover .onstate
{
	display: inline !important;
}

.nav .group.hover .offstate
{
	display: none !important;
}

.nav .group:hover .offstate
{
	display: none !important;
}

.nav .group.hover .items 
{
	display: block;
	top: 100%;
	_top: 100%; /* ie6 hack to adjust location of rollover menu*/

	left: 0px;
	width: 100px;
	background-color: #ffffff;
	
}

.nav .group:hover .items 
{
	display: block;

	top: 100%;
	_top: 100%; /* ie6 hack to adjust location of rollover menu*/

	left: 0px;
}


/* Sub Navigation Items */

.nav_sub
{
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 1px;

	clear: both;	

	
	width: 911px;	
	height: 19px;
	font-size: 1pt;
	line-height: 1pt;
	
}

.nav_sub .groups
{
	list-style-type: none;	
	display: inline;
			
	margin: 0px;
	padding: 0px;
}

.nav_sub .groups .group
{
	display: inline;	
	float: right;	

	behavior: expression(
	this.onmouseover = new Function("this.className += ' hover'"),
	this.onmouseout = new Function("this.className = this.className.replace(' hover', '')"),
	this.style.behavior=null);			
}

.nav_sub .groups .group.seperator
{
	width: 1px;
}

.nav_sub .group img.offstate
{
	display: inline;
}

.nav_sub .group img.onstate
{
	display: none;
}

/* Hover Events */

.nav_sub .group.hover .onstate
{
	display: inline !important;
}

.nav_sub .group:hover .onstate
{
	display: inline !important;
}

.nav_sub .group.hover .offstate
{
	display: none !important;
}


.nav_sub .group:hover .offstate
{
	display: none !important;
}
                    
                    

