/* 
This menu and related javascript thanks to :  Dan Webb and Patrick Griffiths at Suckerfish Dropdowns - htmldog.com -- http://www.htmldog.com/articles/suckerfish/dropdowns/
*/
#nav, #nav ul { /* all lists */	padding: 0; margin: 0; list-style: none; line-height: 1; position: relative; left: 50px; z-index: 1; }
#nav a { color: #fff; font-size: small; background-color: #369; background-image: url(../images/arrow.gif); background-repeat: no-repeat; background-position: right 0; text-decoration: none; vertical-align: middle; margin: 2px; padding: 2px; border: solid 2px #ccc; display: block; }
#nav li { /* all list items */	width: 12em; float: left; /* width needed or else Opera goes nuts */}
#nav li ul { /* second-level lists */ position: absolute;background: #369;width: 10em;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;}
/* Fix IE. Hide from IE Mac \*/
* html ul li { background-color: #fff; float: left; height: 1%; }
* html ul li a { background-color: #fff; height: 1%; }
/* End */

