/* Default Menu Structure Styles */

.nav
{
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 1px;
		
	width: 911px;	
	height: 19px;
	font-size: 1pt;
	line-height: 1pt;	
	
	position: relative;
	z-index: 200;
	
	
	behavior: expression(
	this.onmouseover = new Function("this.className += ' hover'"),
	this.onmouseout = new Function("this.className = this.className.replace(' hover', '')"),
	this.style.behavior=null);				
}

.nav .groups
{
	list-style-type: none;	
	display: inline;
			
	margin: 0px;
	padding: 0px;
}

.nav .groups .group
{
	display: inline;	
	float: left;	
	
	position: relative;		
	
	behavior: expression(
	this.onmouseover = new Function("this.className += ' hover'"),
	this.onmouseout = new Function("this.className = this.className.replace(' hover', '')"),
	this.style.behavior=null);		
}

.nav .groups .group.wide_space
{
	width: 155px;		
}

.nav .groups .group.seperator
{
	width: 3px;
}

.nav .items
{
	list-style-type: none;
	position: absolute;
	float: left;

	display: none;
		
	margin: 0px;
	padding: 0px;
}

.nav  .item
{
	width: 100%;
	height: auto;
	float: left;	
	

	behavior: expression(
	this.onmouseover = new Function("this.className += ' hover'"),
	this.onmouseout = new Function("this.className = this.className.replace(' hover', '')"),
	this.style.behavior=null);		
}

/* Default Menu Element Styles */

.nav .group img.offstate
{
	display: inline;
}

.nav .group img.onstate
{
	display: none;
}

/* Hover Events */

.nav .group:hover .onstate
,.nav .group.hover .onstate
{
	display: inline !important;
}

.nav .group:hover .offstate
,.nav .group.hover .offstate
{
	display: none !important;
}

.nav .group:hover .items
,.nav .group.hover .items 
{
	display: block;

	top: 100%;
	_top: 100%; /* ie6 hack to adjust location of rollover menu*/

	left: 0px;
}

.nav .group .items .item img.onstate
{
	display: none !important;
}

.nav .group .items .item img.offstate
{
	display: inline !important;
}

.nav .group .items .item:hover img.onstate
, .nav .group .items .item.hover img.onstate
{	
	display: inline !important;
}

.nav .group .items .item:hover img.offstate
, .nav .group .items .item.hover img.offstate
{	
	display: none !important;
}

/* Sub Navigation Items */

.nav_sub
{
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 1px;

	
	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
,.nav_sub .group.hover .onstate
{
	display: inline !important;
}

.nav_sub .group:hover .offstate
,.nav_sub .group.hover .offstate
{
	display: none !important;
}