﻿/* Default Menu Structure Styles */

#nav
{
	display: block;
	font-size: 0pt;
	
	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;
	float: left;
			
	margin: 0px;
	padding: 0px;
}

#nav .groups .group
{
	display: inline;
	width: auto;
	
	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 .items
{
	list-style-type: none;
	position: absolute;
	
	width: 150px;
		
	display: none;
	
	background-color: #FFFFFF;
		
	border: #cccccc 1px solid;	
	border-top: none;

	margin: 0px;
	padding: 0px;
}

#nav .items  .item .float_right_items
{
	list-style-type: none;
	position: absolute;
	
	width: 150px;
		
	display: none ;
	
	background-color: #FFFFFF;
		
	border: #cccccc 1px solid;		

	margin: 0px;
	padding: 0px;
}

#nav .wide
{
	 width: 225px !important;
}

#nav  .item
{
	padding: 2px 6px 1px 6px;		
	
	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 .items .item a
{
	width: 100% !important;	
	display: block;
}

#nav .items  .item .float_right_items a
{
	width: 100% !important;	
	display: block;
}

#nav .item .subnav_arrow
{
	display: inline;
	position: absolute;	
	left: 90%;
}

#nav .stripes
{
	display: block;
	float:left;
}

/* Default Menu Element Styles */

#nav a
{
	
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif; 
	font-size: 9pt; 
	color: #666666; 
				
	text-decoration: none;	
}

#nav img.offstate
{
	display: inline;
}

#nav img.onstate
{
	display: none;
}

/* Hover Events */

#nav .group:hover .onstate
,#nav .group.hover .onstate
{
	display: inline;
}

#nav .group:hover .offstate
,#nav .group.hover .offstate
{
	display: none;
}


#nav .group:hover .items
,#nav .group.hover .items 
{
	display: block;
	top: 100%;
	_top: 102%; /* ie6 hack to adjust location of rollover menu*/
	left: 0px;
}

#nav .group.end_group .items
,#nav .group.end_group .items
{
	left: -1%;	
}

#nav .item:hover 
, #nav .item.hover
{	
	background-color: #E6F8FF;		
}

#nav  .items .item:hover .float_right_items
, #nav  .items .item.hover .float_right_items
{	
	display: block;
	top: 0%;
	left: 100%;
	_left: 96%;
}

#nav .items .item:hover  a
, #nav .items .item.hover a
, #nav .float_right_items .item:hover  a
, #nav .float_right_items .item.hover a
{
	/*width: 100%;*/
	color: #0066cc;
}

#nav  .float_right_items .item:hover a
, #nav  .float_right_items .item.hover a
{	
	color: #0066cc !important;
}

#nav .item:hover .float_right_items a
, #nav .item.hover .float_right_items a
{	
	color: #666666;
}

