@charset "UTF-8";

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

/* ----------------------------------- DEFAULT STATES ----------------------------------- */
.nav {
	float:left;
  	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:Arial, Helvetica, sans-serif;
  	display:block;
	padding:3px 25px 0 4px;
	margin:0;
	white-space:nowrap;
	text-decoration:none;
	color:#003366;
}

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

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

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

/* main bar hyperlink styles */
.nav>li>a {
	display:block;
	background-color:#FFFFFF;
	border-top-right-radius:10px;
	border-top-left-radius:10px;
	-moz-border-radius-topleft:10px;
	-moz-border-radius-topright:10px;
	margin:0 10px 0 10px;
	padding: 6px 10px 6px 10px;
	color:#003366;
	font-weight:bold;
}

/* 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:#6699CC;
}

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

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

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

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

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

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

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

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