/*	
	sfx-menu by Luke Campbell ( 2007 )
	
	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 */
}

/* 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: 0;										/* 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 10px;				/* Make a safe area with padding */
	margin: -10px 0 0 -10px;					/* Move the submenu items back to their correct positions */
	/*background: #f00;*/						/* Uncomment to see the safe area */
}

.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%;
}

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


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



.sfx-menu
{
	margin:20px 0 0 10px;
}
.sfx-menu li ul, .sfx-menu
{
	width: 209px;								/* Set the width of the 2nd level + items */
}
.sfx-menu li
{
	margin:0;
	padding:0;
}



.sfx-menu li a
{
	background:#FFF;
	border-bottom:1px solid #E3E3E3;
	padding:4px 13px;
	text-align:left;
	font-size:12px;
	line-height:18px;
	text-decoration:none;
	color:#62054E;
	width:183px;
}
.sfx-menu li li a
{
	font-size:12px;
	font-weight:normal;
	padding: 4px 13px;
	border-bottom:1px solid #FFF;
	background:#62054E;
	color:#FFF;
	text-decoration:none;
}

/* 1st & greater levels */
.sfx-menu li a.parent
{
	background:#FFF url(arrow-l1.gif) no-repeat 90% 50%;
}

/* 1st & greater levels */
.sfx-menu li li a.parent
{
	background:#62054E url(arrow.gif) no-repeat 90% 50%;
}

/* 1st level hover style */
.sfx-menu li:hover>a,
/* 2nd & Greater level hover styles */
.sfx-menu li li:hover>a
{
	background:#FFF301;
	color:#111;
}

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


/*#nav ul li a
{
	text-decoration: none;
	color: #3F057F;
	width:90%;
	display: block;
	border-bottom:1px solid #E3E3E3;
	padding:5px 5%;
	text-align:left;
	font-size:12px;
	line-height:18px;
}

#nav a:hover
{
	background:#62054E;
	color:#FFF;
}*/