/*	
	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;
	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 */
}
#navigation .sfx-menu li a
{
	
	color:#FFF;
	display:block;
	font-family:"Trebuchet MS", "Lucida Grande", "Helvetica Neue", Arial;
	font-size:15px;
	font-weight:bold;

	
	text-decoration:none;
	margin-left:-1px;
	border-left:1px solid #222;
	border-right:1px solid #222;
	border-bottom:none;
	
}

#navigation .sfx-menu li a span
{
	display:block;
	background:url(../../images/petcare/paw-print.gif) no-repeat 10px 50%;
	padding:10px 10px 11px 40px;
}

#navigation .sfx-menu li li a
{
	font-size:14px;
	font-weight:normal;
	padding: 4px 13px;
	border-top:1px solid #630A4A;
	margin-top:-1px;
	border-bottom:1px solid #630A4A;
	background:#DB129C;
	color:#8A005F;
}
#navigation .sfx-menu li li a.parent
{
	background:#4C4C4C url(arrow.gif) no-repeat 90% 50%;
}

/* 1st level hover style */
#navigation .sfx-menu li:hover>a
{
	background:#DB129C url(../../images/petcare/navigation-hover.gif) repeat-x 0 top;
	border-color:#630A4A;
	color:#8A005F;
}

/* 1st level hover style */
#navigation .sfx-menu li:hover>a span
{
	background:url(../../images/petcare/paw-print-hover.gif) no-repeat 10px 50%;

}

/* 2nd & Greater level hover styles */
#navigation .sfx-menu li li:hover>a
{
	background:#FFF;
	color:#111;
}