body {
 -moz-opacity: .999; //to defeat firefox redraw problem with fade effect
}

#container {
   font-family:Verdana, Arial, Helvetica, sans-serif;
	width: 700px;
	margin: 0 auto;
	background-color: #006600;
	position: relative;
	font-size: 9px;
	z-index: 101;
}

/* link styles */
#container ul.nav a,  #container ul.nav li a{
	text-decoration: none;
	display: block;
	padding: 5px 7px 4px 17px;
	color: #ffffff;
	width: 9em;
	font-weight: 600;
	background-color: #006600;
	/*border-bottom: 1px solid #CCC;*/
	border-left: 1px solid #CCC;
    margin: 0;
}

#container ul.nav li li a {
  /* style for links on pop-up menus */
}

#container ul.nav li li li a {
	/* style for second level menu links */
}

#container ul.nav a:hover{
	background-color: #990000;
	color: #FFF;
}

/* main nav bar */
#container ul.nav {
	margin: 0;
	padding: 0;
	line-height: 1;
}

/* all list items */
#container ul.nav  li {
	margin:0 !important;
	padding:0 !important;
	list-style: none; /* remove bullets */
	float: left; /* place buttons side by side */
    position: relative;
}


/* pop-up subnav */
#container ul.nav ul {
	margin: 0;
	padding: 0;
	position: absolute;
    left: 0;
    top: 1.72em; /* change when you change height of links */
	display: none;
}


/* list items in pop-up subnav */
#container ul.nav ul li {
	float: none; /* so links line up one above the other for drop-downs */
}

/*3rd level menu position*/
#container ul.nav ul ul {
	position: absolute;
    left: 10.8em; /* change when you change width of links */
    top: -1px;
    z-index: 99;
    border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
}

#container ul.nav ul ul li {
	z-index: 100;
}



/* look for buttons that have menus */
#container ul.nav .sub {
	background-image: url(../superfish/images/arrow_down.png);
    background-repeat:no-repeat;
    background-position: 2px 3px;
}

#container ul.nav .subsub {
	background-image: url(../superfish/images/arrow_left.png);
    background-repeat: no-repeat;
    background-position: 4px 7px;
}
 #container .clear {clear:both;}