﻿/*NAVIGATION*/
#nav, #nav ul { /* all lists */

	list-style: none;
	line-height: 1;
}

#nav li 
{
	float: left;
	display: block;
	font-family: Verdana, Arial, Helvetica, 'sans serif';
	text-transform: uppercase;
	font-size: 12px;
	font-weight: normal;
	color: black;
	text-align: center;
	width: 123px;
	height: 26px;
	padding-top: 15px;
	vertical-align: middle;
	background: url(../images/nav_border.gif) no-repeat center right;
}

#nav a {
	display: block;
}

#nav li.last {
	background: none;
}

#nav li a.double {
	position: relative;
	top: -7px;
	padding-bottom:0px;
}
 
#nav li ul { /* second-level lists */
    top: 14px;
	position: relative;
	background: #ffffff;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul.double { /* second-level lists */
    top: 2px;
	position: relative;
	background: #ffffff;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li ul li { /* second-level lists */
    padding-top: 10px;
	background: #ffffff;
	border-bottom:1px solid #e58d1a;
	font-size: 9px;
	height: 24px;
	vertical-align: middle;
}
#nav li ul li.triple { /* second-level lists */
    background: #ffffff;
	border-bottom:1px solid #e58d1a;
	font-size: 9px;
	vertical-align: top;
	padding-bottom:8px;
	padding-top: 5px;
}

#nav li ul li.last { /* second-level lists */
    background: #ffffff;
	vertical-align: top;
	padding-top:12px;
	border-bottom: none;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}