/* Suckerfish menu from:
http://www.alistapart.com/articles/dropdowns
http://www.htmldog.com/articles/suckerfish/example/
*/

#nav {
	/*position: absolute;*/
	left: 10px;
	top: 128px;

	/*position: relative;
	left: 0px;*/
	width: 900px;
	padding: 0px;
	margin: 0px;
	height:22px;
}

#nav ul { /* all lists */
	padding: 0px;
	margin: 0px;
	list-style: none;
}

#nav li { /* all list items */
	float: left;
	position: relative;
	width: 6.8em;

	border: 1px solid #2A292D;
	display:block;
	color: #888888;
	background-color: #F5F5FF;

}

#nav li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
}

#nav li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

#nav li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
	color: #ffffff;
	background-color: #888888;
}
/*
#content {
	clear: left;
}*/

#nav a {
	color: #000000;
	background-color: #F5F5FF;
	display: block;
	text-decoration:none;
	padding: 2px;
}

#nav li li a {
	color: #000000;
	background-color: #F5F5FF;
	display: block;
	text-decoration:none;
	padding: 2px;
}

#nav li li a:hover {
	color: #ffffff;
	background-color: #888888;
	display: block;
	padding: 2px;
}


