@charset "UTF-8";

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

/* ----------------------------------- DEFAULT STATES ----------------------------------- */
.nav {
  	margin:8px 0 0 20px;
	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 */
	text-align:left;
}

/* 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:#0c2ece;
}

/* 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:hover {
	background-color:#0c2ece;
    border: 0px solid #000000;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

/* main bar hyperlink styles */
.nav>li>a {
	padding: 10px 15px 8px 15px;
	color:#0c2ece;
}

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

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

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

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

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

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

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

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

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

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

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

