﻿/*       Based on Son of Suckerfish Menu           */
/*       Documentation can be found here           */
/*http://htmldog.com/articles/suckerfish/dropdowns/*/
#nav li
{
	margin:0;
}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav
{
	margin: 0 auto; /*to center the menu*/
	border: 0 none;
	width: 500px; /*For KHTML*/
	height: 42px;
	background:url('/images/barbgTall5.gif') repeat-x;
}

#nav a 
{
	color: White;
	font: bold 10px Verdana, Arial, Helvetica, sans-serif;
	display: block;
	text-decoration:none;
}

#nav a:hover
{
	text-decoration:none;
}

#nav li { /* all list items */
	float: left;
	/*width: 10em; /* width needed or else Opera goes nuts */
  padding:14px 10px 0 0;
  
  height: 28px;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #D7D6D3;
	border:solid 1px black;
	width: 200px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	z-index:10;
}

#nav li ul li /*Second-level list elements*/
{
	height:auto;
	padding:3px 0 0 2px;
	display: block !important;
	display: inline; /*For IE*/
	width:100%;
}

#nav li ul li a
{
	color:Black;
}

#nav li:hover ul, #nav li.iehover ul { /* lists nested under hovered list items */
	left: auto;
}

#nav li a:hover
{
	color:Black;
	background: #D7D6D3;
}

#nav li ul li:hover , #nav li ul li.iehover {
	background-color:#C0C0C0;
}

#nav li ul li a:hover
{
	background-color:#C0C0C0;
}

ul#nav li.twoRows
{
	padding:7px 4px 0 0;
	height:35px;
}

ul#nav li.threeRows
{
	padding: 2px 14px 0 0;
	height:40px;
}
