.nextProj a:link, .nextProj a:visited {
	font: bold normal 9px Frutiger, Verdana, Arial, Helvetica, sans-serif;
	color: #ddd;
	text-decoration: none;
	letter-spacing: 1pt;
}
.nextProj a:hover {
	color: #fff;
}

#nav {
	width: 400px;
	position: absolute;
	left: 20px;
	top: 160px;
	z-index:10;
	margin: 0;
	padding: 0;
}
/* position:relative keeps the secondary menu aligned properly, float:left keeps the items from shifting  */
#nav li {
	margin: 0 25px 0 0;
	list-style-type: none;
	position: relative;
	float: left;
}
#nav a {
	display: block;
	padding: 0 10px 10px 0;
	color: #ddd;
	font: bold 10px Frutiger, Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
	text-transform: lowercase;
	letter-spacing: 1pt; }
#nav a:hover, #nav a:active {
	color: #fff;
	text-decoration: none;
}

/* 2nd-level navigation */
#nav li ul {
	position: absolute; 
	left: 0;
	top: 22px;
	display: none;
	margin: 0;
	padding: 0;
	background: url(../home/spacer.png);
	height: 380px;

}
#nav li ul li {
	text-align: left;
	margin-right: 0;
}
/* the li.over is for when the javascript changes :hover to .over */
#nav li:hover ul, #nav li.over ul {
	display: block;
}
#nav li li a {
	padding: 6px 10px;
	color: #666;
	width: 23em;
	text-transform: uppercase;
	font-weight: normal;
}
#nav li li a:hover {
	background-color: #ccc;
	color: #000;
}
