/*
sons of suckerfish vertical menu
BE CAREFUL - some fixes needed - see bottom of sheet
*/


#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	margin: 3px;
	padding: 3px;
	text-decoration: none;
	/* width: 10em;*/
}

#nav li { /* all list items */
	float: left;
	/* width: 10em; width needed or else Opera goes nuts */
	border-right: 1px solid #555;
}

#nav li li {
	border-right: 0;
}

#nav 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 */
}
#nav li ul a {/* second-level lists */
	width: 9.5em;
}


#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}



#nav li:hover ul,
#nav li li:hover ul,
#nav li li li:hover ul,
#nav li.sfhover ul,
#nav li li.sfhover ul,
#nav li li li.sfhover ul { 
	/* lists nested under hovered list items */
	left: auto;
	background-color: #8a8276;
}
#nav li ul a {
	color: white;
}
#nav li ul li:hover {
	background-color: #5a5246;
}


/* FIX NEEDED */
div#navigation #nav li:hover {
position: static;
left: 0;

}

/* notes

- - - colours - - -
light gold: #b2a99a
dark gold: #8a8276


- - - z index - - -
n/a

*/
