@charset "UTF-8";

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

#menuhovt {
	position:absolute;
	width:17px;
	height:18px;
	top:-30px;
	background:url(../images/BG_menu_hover.png) 0 0 no-repeat;
	z-index:25;
}

#menuhovb {
	position:absolute;
	width:17px;
	height:18px;
	top:-15px;
	background:url(../images/BG_menu_hover.png) 0 0 no-repeat;
	z-index:25;
}

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

/* default state for all nav bar items */
.nav  li {
	margin:0 0 0 0 !important;
	padding:0 !important;
	list-style: none; /* remove bullets */
	float: left; /* place buttons side by side */
	position: relative;
	z-index:100;/* this places the sub menus above other javascript */
}

/* default state for all hyperlinks */
.nav a {
	font-family:Georgia, "Times New Roman", Times, serif;
  	display:block;
	padding:3px 25px 0 4px;
	margin:0;
	white-space:nowrap;
	text-decoration:none;
	color:#FFFFFF;
	text-align:left;
}

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

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

/* ----------------------------------- MAIN NAV BAR ----------------------------------- */

/* main bar hyperlink styles */
.nav>li>a {
	padding: 5px 10px 5px 8px;
	margin: 0 2px 0 2px;
	color:#331700;
}
.nav>li:hover>a {
	padding: 5px 10px 5px 8px;
	margin: 0 2px 0 2px;
	color:#000000;
}

/* 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;
}

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

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

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

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

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

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

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

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

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

.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 */
}

