/* SuckerFish Drop-Down Navigation CSS */

/* begin header navigation -----------------------------------------------------------*/

#header ul#drop {
	position: absolute;
	top: 58px;
	right: 46px;
	list-style: none;
	width: 404px;
	height: 22px;
	border-bottom: 2px solid #484237;
	z-index: 1;
}

#drop li { /* all list items */
    float: left;
    position: relative;
	list-style: none;
}

#drop li.padright {
	padding-right: 46px;
}

#drop li ul {
    width: 200px;
	list-style: none;
}

#drop li ul { /* second-level lists */
	position: absolute;
    top: 22px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	background: #484237;
	font: normal normal bold 11px Arial, sans-serif;
	z-index: 1000;
}

* html #drop li ul { /* second-level lists */
	top: 24px;
}

#drop li ul ul { /* third-and-above-level lists */
	margin-left: 262px;
    top: -3px;
	background: #417B93;
}

#drop li li {
    text-indent: 10px;
	border-bottom: 1px solid #000;
	width: 100%;
}

#drop li:hover ul ul,
#drop li.sfhover ul ul {
	left: -999em;
}

#drop li:hover ul,
#drop li li:hover ul,
#drop li.sfhover ul,
#drop li lisf.hover ul { /* lists nested under hovered list items */
	left: 0px;
}

#drop li ul a {
    float: none;
    display: block;
    text-align: left;
    text-indent: 10px;
	height: 100%;
	width: 100%;
	padding: 4px 0;
}

#drop li ul a:hover {
	background: #D4CD94;
	color: #000;
}

#drop li ul a.sub-menu {
	background: url(../images/bg/arrow.gif) no-repeat 245px 4px;
}

#drop li ul a.sub-menu:hover {
	background: #1E4D61 url(../images/bg/arrow.gif) no-repeat 245px 4px;
}

#drop a {
	display: block;
	color: #fff;
	font: normal normal normal 11px Arial;
	text-decoration: none;
	outline: none;
	padding-bottom: 6px;
	padding-top: 4px;
}

#drop a:hover {
	color: #D0CBBB;
}

/* end header navigation -----------------------------------------------------------*/