/*	
	
	A Combination of the ADxMenu & Suckerfish dropdown menus.
	
	ADxMenu:		 	http://www.aplus.co.yu/adxmenu/ 
	Son of Suckerfish:  	http://www.htmldog.com/articles/suckerfish/dropdowns/
*/

/* -- CORE STYLES
---------------------------------------------------------------------------------------------------------------------------------------------------------*/

.sfx-menu, 
.sfx-menu li ul
{
	list-style:none;
	margin: 0;
	padding: 0;
	display:block;
	min-height: 0;
}

.sfx-menu li
{
	margin:0;
	padding:0;
	border:0;
	float:left;
	display: block;
	position:relative;
	cursor:pointer;								/* Make certain the cursor is always correct */
}

/* For some reason the following also resolves Opera ( mac ) problems. */
.sfx-menu li:hover
{
	z-index: 10000;								/* This makes sure active item is always above anything else in the menu */
	white-space: normal;						/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present.*/
}

.sfx-menu li li
{
	float:none;
	width: 100%;								/* fix gaps in IE6 & IE7. */
	float: left;
}

.sfx-menu li ul
{
	position:absolute;
	z-index:100;								/* Make sure it appears on top */
	left:-999em;								/* Position outside the viewport */	
	top: 100%;									/* Position first level directly under parent */
}

/* Sets a safe area around the menu. */
.sfx-menu li ul
{
	background-image: url(empty.gif);			/* Required for safe area to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 35px 35px 35px;				/* Make a safe area with padding */
	margin: -10px 0 0 -35px;					/* Move the submenu items back to their correct positions */
	/* background: #f00;*/								/* Uncomment to see the safe area */
}
.sfx-menu ul ul {
	padding: 35px 35px 35px 10px;
	margin: -35px 0 0 -10px;
}

.sfx-menu li a
{
	display: block;
}

/* Clear the floats. */
.sfx-menu:after,
.sfx-menu ul:after
{
	content: ".";
	clear: both;
	display: block;
	height: 0;
	overflow: hidden;
	visibility: hidden;
}
/* Clear the floats for IE6, IE7*/
.sfx-menu, .sfx-menu ul { display: inline-block; }
.sfx-menu, .sfx-menu ul { display: block; }

.sfx-menu li:hover>ul
{
	left:auto;
}

/* Show 3rd+ Levels */
.sfx-menu li li:hover>ul
{
	top: 0;
	left: 100%;
}


/* -- APPEARANCE STYLES (Optional, These styles can be altered)
---------------------------------------------------------------------------------------------------------------------------------------------------------*/


.sfx-menu li ul
{
	width: 165px;								/* Set the width of the 2nd level + items */
}
.sfx-menu li a
{
	font:15px "Myriad Pro", "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif;
	font-weight:bold;
	letter-spacing:-0.5px;
	text-transform:uppercase;
	line-height:18px;
	padding:16px 20px 12px 20px;
	text-decoration:none;
	color:#FFF;
}

.sfx-menu li li a
{
	font-size:13px;
	font-weight:normal;
	padding: 3px 13px;
	border-bottom:1px solid #BB861E;
	text-transform:capitalize;
	background:#f5b100;
	color:#4E3504;
	letter-spacing:0;

}
.sfx-menu li li a.parent
{
	background:#00B82E url(arrow.gif) no-repeat 90% 50%;
}

/* 1st level hover style */
.sfx-menu li:hover>a
{
	background:#f5b100 url(../../images/layout/nav-hover.gif) repeat-x 0 0;
	color:#855b09;
}

/* 2nd & Greater level hover styles */
.sfx-menu li li:hover>a
{
	background:#ADDDC0;
	color:#0A5579;
}

/* 2nd level hover styles */
.sfx-menu li li:hover>a.parent
{
	background:#94e5ff url(arrow.gif) no-repeat 90% 50%;
	color:#111;
}