@charset "UTF-8";

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

/* ----------------------------------- DEFAULT STATES ----------------------------------- */
.nav {
	position:relative;
	float:left;
	left:50%;
  	margin: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:#000000;
}

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

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

/* ----------------------------------- MAIN NAV BAR ----------------------------------- */
.nav>li:hover {
	background-color:#CC9966;
}

.nav>li {
	position:relative;
	float:left;
	right:50%;
}

/* main bar hyperlink styles */
.nav>li>a {
	padding: 10px 15px 11px 15px;
	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:#CC9966 url(../images/arrow_down.png) center right no-repeat;
}

/* link styles */
.nav>li:hover>a {
	padding: 10px 15px 11px 15px;
	color:#000000;
}

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

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

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

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

.nav .subsub:hover {
	background:#CC9966 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:#CC9966 thin solid;
	border-bottom:none;
	display:none;
}

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

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

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