@charset "UTF-8";

body {
 -moz-opacity: .999;/* This fixes the redraw effect in firefox */
}

/* ----------------------------------- DEFAULT STATES AND STUFF ----------------------------------- */
.nav {
  	margin:0 20px 0 0;
	padding: 0;
	line-height: 1;/* This keeps the nav bar from being too thick */
	float:right;
}

/* default state for all nav bar items */
.nav li {
	position: relative;
	float: left; /* place buttons side by side */
	margin:0 0 0 0 !important;
	padding:0 !important;
	list-style: none; /* remove bullets */
}

/* 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:#003366;
	letter-spacing:-1px;
}

/* 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 {
   /* border: 1px solid #FFFFFF;*/
}

.nav>li:hover {
	/*background-color:#6699CC;
    border: 1px solid #003366;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;*/
}

/* main bar hyperlink styles */
.nav>li>a {
	padding: 15px 15px 5px 15px;
	color:#003366;
}

/* items with menus 
.nav .sub {
	background:url(../images/arrow_down.png) center right no-repeat;
}

.nav .sub:hover {
	background: url(../images/arrow_down.png) center right no-repeat;
} 
*/

/* link styles */
.nav>li:hover>a {
	padding: 15px 15px 5px 15px;
	color:#006699;
	/*color:#FFFFFF;*/
}

/* ----------------------------------- SUB MENU ----------------------------------- */
.nav>li>ul {
	position: absolute;
 	left:0;
	display: none;
	background:#FFFFFF;
	border:#6699CC thin solid;
	border-bottom:none;
	display:none;
}

.nav>li>ul>li {
	background:#FFFFFF;
	border-bottom:#6699CC thin solid;
	text-align:left;
}

.nav>li>ul>li:hover {
	background:#6699CC;
}

.nav .subsub {
	background:#FFFFFF url(../images/arrow_left.png) center right no-repeat;
}

.nav .subsub:hover {
	background:#6699CC 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:#6699CC thin solid;
	border-bottom:none;
	display:none;
}

.nav>li>ul>li>ul>li {
	background:#FFFFFF;
	border-bottom:#6699CC thin solid;
}

.nav>li>ul>li>ul>li:hover {
	background:#6699CC;
}

.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 */
}
