body {
 -moz-opacity: .999; //to defeat firefox redraw problem with fade effect
}

/* link styles */
.nav a {
	text-decoration: none;
	display: block;
	padding: 5px 0px;
	color: #FFF;
	margin: 0;
	text-transform: capitalize;
	font: bold 13px Arial, Helvetica, sans-serif;
}

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

.nav li li li a {
	/* style for second level menu links */
}

.nav a:hover{
	color: #999;
}

/* main nav bar */
.nav {
	margin: 0 auto;
	padding: 0;
	line-height: 1;
	width: 990px;
}

/* all list items */
.nav  li {
	margin:0 !important;
	padding:0 !important;
	list-style: none; /* remove bullets */
	float: left; /* place buttons side by side */
	position: relative;
	width: 197px;
	text-align: center;
}


/* pop-up subnav */
.nav ul {
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	top: 1.72em; /* change when you change height of links */
	display: none;
	border: 1px solid #999;
	background: #333;
	width: 197px;
	text-align: left;
}


/* list items in pop-up subnav */
.nav ul li {
	float: none; /* so links line up one above the other for drop-downs */
	background: #333;
	text-align: left;

}
.nav ul li a {
	font-weight: normal;
	padding-left: 10px;
	font-size: 14px;
}
/*3rd level menu position*/
.nav ul ul {
	position: absolute;
	left: 10.8em; /* change when you change width of links */
	top: -1px;
	z-index: 99;
	border: 1px solid #999;
}

.nav ul ul li {
	z-index: 100;
}



/* look for buttons that have menus */
.nav .sub {
	background-image: url(../superfish/images/arrow_down.png);
  background-repeat:no-repeat;
  background-position: 2px 3px;
}

.nav .subsub {
	background-image: url(../superfish/images/arrow_left.png);
  background-repeat: no-repeat;
  background-position: 4px 7px;
}

