/* CSS Document */


#navwrap {
	width: 990px;
	height: 40px;
	padding-left: 10px;
	float: left;
	}

.nav {
	list-style: none;
	padding: 0;
	margin: 0;
	}
	
.nav li {
	float: left;
	position: relative;
	width: 139px; /*140*/
	text-align: center;
	border-right: 1px solid #fff;
	}

.nav li#last {
	border-right: none;
	width: 140px;
	}

.nav a {
	display: block;
	height: 30px;
	background: #c4b7a8;
	font-size: 12px;
	line-height: 30px;
	text-decoration: none;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	}
	
.nav a:hover {
	background:  #e0d9d1;
	text-decoration: none;
	color: #000000;
		}
		
.nav a:visited {
	color: #000000;
	}
.nav a:active {background-color: #dbd1c6;}

/*-- TARGETS NESTED UL LI A LIST --*/

li ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	font-weight: normal;
	padding: 1px 0 0 0;
	background: #fff;
	}

/*li>ul {
	top: auto;
	left: auto;
	}*/
	
li li {
	display: block;
	float: none;
	}

li:hover ul, li.over ul {
	display: block;
	}	
		
.nav li li a {
	display: block;
	font-weight: normal;
	border-bottom: 1px solid #fff;
	}

.nav li li a:hover {
	background: #669999;
	}





