/*	
	
	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;
	display: block;
	position:relative;
	cursor:pointer;								/* Make certain the cursor is always correct */
}

.sfx-menu-vert li
{
	float:left;
}

/* For some reason the following also resolves Opera ( mac ) problems. */
.sfx-menu li:hover
{
	z-index: 1000;								/* 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: 0;										/* Position first level directly under parent */
}
.sfx-menu-vert li ul{
	top: 100%;	
}
/* 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 10px;				/* Make a safe area with padding */
	margin: -10px 0 0 -11px;					/* Move the submenu items back to their correct positions */
	/*background: #f00;*/						/* Uncomment to see the safe area */
}

/* Sets a safe area around the menu. */
.sfx-menu-vert 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-vert 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:100%;
}

.sfx-menu-vert 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)
---------------------------------------------------------------------------------------------------------------------------------------------------------*/

/* Set the width of the 1st LEVEL */
.sfx-menu{
	width: 180px;
}

/* Set the width of the 2nd LEVEL + */
.sfx-menu li ul{
	width: 220px;								
}

/* Set the width of the 1st LEVEL only vert */
.sfx-menu-vert{
	width: 100%;
}



/* 1st LEVEL */
.sfx-menu li a {
	font:12px  Arial, "Helvetica Neue", Helvetica, Verdana, sans-serif;
	line-height:18px;
	text-align:left;
	text-decoration: none;
	color: #222;
	display: block;
	border:1px solid #f4f4f4;
	border-top-color:#E3E3E3;
	border-bottom-color:#E3E3E3;
	padding:6px 10px 6px 10px;
	margin-bottom:-1px;
}

.sfx-menu-vert li a
{
	font:12px  "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif;
	font-weight:bold;
	text-transform:uppercase;
	line-height:18px;
	padding:13px 10px 12px 10px;
	text-decoration:none;
	color:#FFF;
	letter-spacing:-0.5px;
	border-right:1px solid #113387;
	margin:0;
	border-bottom:none;
	border-left:none;
	border-top:none;
}

.sfx-menu-vert li.first a{
	border-left:1px solid #113387;
}


/* 2nd LEVEL */
.sfx-menu li li a
{
	font:12px  Arial, "Helvetica Neue", Helvetica, Verdana, sans-serif;
	line-height:18px;
	text-align:left;
	text-decoration: none;
	color: #FFF;
	display: block;
	padding:6px 10px 6px 10px;
	background:#4ab14c;
	border:1px solid #1c5f28;
	margin-bottom:-1px;
}

.sfx-menu-vert li ul li a
{
	font:12px "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif;
	line-height:18px;
	padding:8px 10px 8px 10px;
	
	border:1px solid #da5000;
	text-transform:lowercase;
	font-weight:bold;
	background:#FF5E00;
	color:#FFF;
	margin-bottom:-1px;

}

/* 1st level hover style */
.sfx-menu li:hover>a {
	border-color:#1c5f28;
	background:#4ab14c;
	color:#FFF;
}

.sfx-menu-vert li:hover>a{
	background:#e2560e  url(../../../images/layout/nav-hover.png) repeat-x 0 0;
	color:#FFF;
}


/* 2nd & Greater level hover styles */
.sfx-menu li li:hover>a
{

	color:#1c5f28;
	background:#6edc70;
	margin-top:0;


}

.sfx-menu-vert li li:hover>a
{
	background:#f25900;
	color:#FFF;
	border:1px solid #da5000;
	margin-bottom:-1px;
	text-indent:10px;
}


/* 1st level hover style */
.sfx-menu li a.parent
{
	background:url(arrow.gif) no-repeat 97% 50%;
}

.sfx-menu li li a.parent
{
	background:#4ab14c url(arrow.gif) no-repeat 97% 50%;
}

/* 1st level hover style */
.sfx-menu li:hover>a.parent
{
	border-color:#1c5f28;
	background:#4ab14c  url(arrow.gif) no-repeat 97% 50%;
	color:#FFF;
}

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