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

/*link styles*/
.nav a{
	margin-top: 2%;
	color: 336666;
    font-family: verdana;
    font-variant: small-caps;
    font-size: 79%;
    font-weight: bold;
    text-decoration: none
    }
    
.nav a:hover{
	text-decoration: none; 
    color: 3366CC;
    }     

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

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

/* main nav bar */
.nav {
	margin-left: 27%; /* place nav bar in center */
	position: absolute;
	}
   
/* all list items */
.nav li{
    list-style: none; /* remove bullets */
    float: left; /* place buttons side by side*/
    position: relative;
  	}

.nav ul {
	margin: 0;
	padding: 0;
	position: absolute;
    left: 0;
    top: 1.35em; /* change when you change height of links */
	display: none;
	}
    
/* list items in pop-up subnav */
.nav ul li{
    list-style: none; /* remove bullets */
    float: none; /* so links line up one above the other for drop-downs */
    position: relative; /* change when you change height of links */
    font-size: 85%;
    }

/*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-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
}

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

