@charset "UTF-8";
/* CSS Document */

body {
 -moz-opacity: .999;/* This fixes the redraw effect in firefox */
}

/* ----------------------------------- DEFAULT STATES ----------------------------------- */
.nav {
	float:left;
	position:relative;
	left:50%;
  	margin:0;
	padding: 0;
	margin-top:5px;
	line-height: 1;/* This keeps the nav bar from being too thick */
}

/* default state for all nav bar items */
.nav li {
	position: relative;
	float:left;
	list-style: none; /* remove bullets */
	z-index:100;/* this places the sub menus above other javascript */
	text-align:left;
}

/* default state for all hyperlinks */
.nav a {
	margin:0;
	white-space:nowrap;
	text-decoration:none;
	color:#ffffcc;
	text-align:center;
}

/* default hover state for all hyperlinks */
.nav li:hover>a {
	text-decoration:none;
	color:#FFFFFF;
}

.nav ul {
	margin:0 !important;
	padding:0 !important;
	min-width:110px;
}

/* ----------------------------------- MAIN NAV BAR ----------------------------------- */
.nav>li {
	right:50%;
	display:block;
	width:110px;
	margin:0 15px 0 15px;
	text-align:center;
}

/* main bar hyperlink styles */
.nav>li>a {
	display:block;
	text-align:center;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#ffffcc;
	width:110px;
	padding:10px 0 0 0;
	height:25px;
	text-decoration:none;
	background:url(../images/template/menu_BG.png) center top no-repeat;
}

/* items with menus */
.nav .sub {
	background:url(../images/arrow_down.png) center right no-repeat;
}

/* items with menus hover state */
.nav .sub:hover {
	background:url(../images/arrow_down.png) center right no-repeat;
}

/* link styles */
.nav>li:hover>a {
	color:#000000;
}

/* ----------------------------------- SUB MENU ----------------------------------- */
.nav>li>ul {
	position: absolute;
 	left:0;
	display: none;
	background:#663300;
	border:#330000 thin solid;
	border-bottom:none;
	display:none;
}

.nav>li>ul>li {
	background:#663300;
	border-bottom:#330000 thin solid;
}

.nav>li>ul>li:hover {
	background:#996633;
}

.nav .subsub {
	background:#663300 url(../images/arrow_left.png) center right no-repeat;
}

.nav .subsub:hover {
	background:#996633 url(../images/arrow_left.png) center right no-repeat;
}

.nav>li>ul>li>a {
	display:block;
	padding:3px 20px 2px 5px;
	text-align:left
}

/* ----------------------------------- THIRD MENU ----------------------------------- */
.nav>li>ul>li>ul {
	position: absolute;
	top: -1px;
	display: none;
	background:#663300;
	border:#330000 thin solid;
	border-bottom:none;
	display:none;
}

.nav>li>ul>li>ul>li {
	background:#663300;
	border-bottom:#330000 thin solid;
}

.nav>li>ul>li>ul>li:hover {
	background:#663300;
}

.nav>li>ul>li>ul>li>a {
  /* additional style for links on pop-up menus */
}


/* list items in pop-up subnav */
.nav ul li {
	float: none; /* so links line up one above the other for drop-downs */
}
