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



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

li { /* all list items */
	float: left;
	position: relative;
	width: 5em;
	
	border: 1px solid #43548A; 
	display:block;
	color: #888888;
	background-color: #F5F5FF;
	
}

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

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;
}

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;
}

