/* *********************** MENU ************************* */
/* *****************Son of Suckerfish******************** */
#nav {
		width: 731px;
}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
		font-size: 13px;
		font-family: "Trebuchet MS", Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
		font-weight: bold;
		color: #000;
		text-decoration: none;
		text-align: center;
/*		height: 1.8em;*/
		line-height: 32px;
/*		line-height: 1.8em;*/
	display: block;
/*	width: 12em;*/						/* replaced by width specs in menu's html */
}

#nav a:hover {
		text-decoration: underline;
}

#nav li { /* all list items */
		height: 32px;
		text-align: left;
	float: left;
	width: 12em; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 12em;
			background: d2d2d2;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul a {							/* Specific formatting of sublevel links */
		padding: 0 0 0 10px;
		text-align: left;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	background: #d2d2d2;				/* makes background of drop-down colored */
}

#nav li:hover, #nav li.sfhover {
/*	background: #d2d2d2;*/			/* hovered background color for links */
}


#content {
	clear: left;
	color: #ccc;
}