/* MAIN SUCKERFISH STYLES - STRUCTURE */

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
}

#nav li { /* all list items */
	float: left;
}

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

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

/* SECONDARY SUCKERFISH STYLES */

#nav li ul a {
	width: 160px;
	text-align:left;
	border-top: 1px solid #0F2036;
	border-left: 1px solid #0F2036;
	border-right: 1px solid #0F2036;
	outline: none;
}

.last {
	border-bottom: 1px solid #0F2036;
}

#nav a {
	text-align: center;
	text-decoration: none;
	background-color: #1253A4;
	font-weight: bold;
	color: #fff;
	font-size: 12px;
	padding: 10px;
	outline: none;
}

#nav a:hover {
	color: #fdd60f;
	background-color: #2A69C8;
}
