﻿/* Default Menu Structure Styles */

.nav
{
	display: block;
	margin-left: auto;
	margin-right: auto;
	float: left;	
	padding: 18px 0px 0px 65px;	
	_padding: 0px 0px 0px 35px;
	width: 575px;
	height: 35px;
	text-decoration: none;
}

.nav .groups
{
	list-style-type: none;	
	display: inline;
}

.nav .groups .group
{
	display: inline;	
	float: left;	
	height: 18px;
	z-index: 999;
	padding-top: 9px;
	position: relative;	
	text-decoration: none;
	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 .separator
{display: inline;
 float: left;
 padding: 0px 15px;
 z-index: 1px;
 }

.nav .items
{
	list-style-type: none;
	position: absolute;
	float: left;
	margin: 0px;
	padding-left: 0px;
	width: 160px;
	
	display: none;
	background-image: url('images/nav_dropdown.png');
	background-repeat: repeat;
	z-index: 999999999;
	behavior: expression(
	this.onmouseover = new Function("this.className += ' hover'"),
	this.onmouseout = new Function("this.className = this.className.replace(' hover', '') "),
	this.style.behavior=null);	
}

.nav .item
{
	font: bold 11px Arial;
	color: #ffffff;
	line-height: 13px;
	text-decoration: none;
	text-transform: capitalize;
	z-index: 999;
	behavior: expression(
	this.onmouseover = new Function("this.className += ' hover'"),
	this.onmouseout = new Function("this.className = this.className.replace(' hover', '') "),
	this.style.behavior=null);	
}

/* Hover Events */

.nav .groups .group a:link,
.nav .groups .group a:visited
{
}

.nav .items a:visited,
.nav .items a:link
{
	text-decoration: none;
	display: block;
	padding: 7px 10px;
	font: bold 11px Arial;
	text-transform: uppercase;
	color: #fff;
}

.nav .items a:hover
{
	text-decoration: none;
	color: #ffffff;
	font: bold 11px Arial;
	text-transform: uppercase;
	background-color: #ba9d35
}

/* Hover Events */

.nav .groups .group a:hover
{
	text-decoration: none;
}

.nav .group .onstate
{
	display: none !important;
	border: 0px;

}

.nav .group .offstate
{
	display: inline !important;
	border: 0px;
}

.nav .group.hover .onstate,
.nav .group:hover .onstate
{
	display: inline !important;
	border: 0px;
}

.nav .group:hover .offstate,
.nav .group.hover .offstate
{
	display: none !important;
	border: 0px;
}

.nav .group.hover .items, 
.nav .group:hover .items 
{
	display: block;
	top: 100%;
	_top: 100%; /* ie6 hack to adjust location of rollover menu*/

	left: 0%;	
}

/* 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;
}

