/* layout for horizontal menus */
.suckerfish-clear { clear: both; }

.suckerfish-h, .suckerfish-h ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 2;
}

.suckerfish-h a {
	display: block;
	width: 10em;
}

.suckerfish-h li { /* all list items */
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
}

.suckerfish-h li ul { /* second-level lists */
	position: absolute;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

.suckerfish-h li ul ul { /* third-and-above-level lists */
	margin: -2em 0 0 10em;
}

.suckerfish-h li:hover ul ul, .suckerfish-h li:hover ul ul ul,
.suckerfish-h li.hover ul ul, .suckerfish-h li.hover ul ul ul {
	left: -999em;
}

.suckerfish-h li:hover ul, .suckerfish-h li li:hover ul,
.suckerfish-h li li li:hover ul, .suckerfish-h li.hover ul,
.suckerfish-h li li.hover ul, .suckerfish-h li li li.hover ul { /* lists nested under hovered list items */
	left: auto;
}

/* fix bug with forum-tools */
.suckerfish-h * { z-index: 10010 !important; }

/* fix IE7 mouseout issue */
.suckerfish-h li:hover, .suckerfish-h li.hover {
    position: static;
}