body {
 -moz-opacity: .999; //to defeat firefox redraw problem with fade effect
}

/* link styles */
.nav a {
			display: block;
			width: 190px;
			color: #FFF; 
			font-size:13px; 
			text-decoration:none;  
			font-weight:normal;
			line-height:25px;
			text-transform:uppercase;
			border-left: 1px solid #fff;
    		margin: 0;
			text-align:center;

}

.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{
	background-color: #240f54;
}


/* main nav bar */

.nav {
		margin: 0 auto;
		height:25px; 
		background-color: #673193;
		text-align:center;
		width: 768px;
		line-height: 2;
		border-right: 1px solid #fff;
		
}


/* 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;

}


/* pop-up subnav */
.nav ul {
	margin: 0;
	padding: 0;
	position: absolute;
    top: 2.5em; /* change when you change height of links */
	display: none;
	
}


/* list items in pop-up subnav */
.nav ul li {
	float: none; /* so links line up one above the other for drop-downs */
	text-align: center;
	width: 190px;
	text-transform:uppercase;
	float:none;
	
}

.nav ul li a { border:none; 
				color: #240f54; 
				font-size:11px;
				font-weight: 600;
}

.nav ul li a:hover
{	
	color: #673193;
	background :none; 
	
}

/*3rd level menu position*/
.nav ul ul {
	position: absolute;
  left: 16.5em; /* change when you change width of links */
  top: -5px;
  z-index: 99;
  border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
}

.nav ul ul li {
	z-index: 100;
}



/* look for buttons that have menus */
.nav .sub {
	background-image: url(images/arrow_down.png);
  background-repeat:no-repeat;
  background-position: 2px 10px;
}

.nav .subsub {
	background-image: url(images/arrow_left.png);
  background-repeat: no-repeat;
  background-position: 4px 15px;
}

