/** Customised htmldog suckerfish */

#navigation {
	position: absolute;
	top: 110px;
	left: 64px;
	width: 720px;
}

#navigation, #navigation ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#navigation a {
	color: #009900;
	display: block;
	width: 100%;
	line-height: 30px;
	text-align: center;
	text-decoration: none;
}
#navigation a {
	font-weight: bold;
}
#navigation li ul a {
	background-color: #efe;
	font-weight: normal;
	border-bottom: solid 1px #ddd;
	opacity: 0.9;
	-moz-opacity: 0.9;
	filter: alpha(opacity=90);
}
#navigation a:hover {
	background-color: #fff;
	opacity: 0.9;
	filter: alpha(opacity=90);
}

#navigation li { /* all list items */
	float: left;
	display: block;
	width: 120px; /* width needed or else Opera goes nuts */
}

#navigation li ul { /* second-level lists */
	width: 120px;
	display: none;
}

#navigation li:hover ul, #navigation li.sfhover ul { /* lists nested under hovered list items */
	display: block;
}

