
/*** SUPERFISH SKIN ***/

.sf-menu {
	float:			left;
}

/* all levels */
.sf-menu a {
	font-size: 0.8em;
	padding: 		1px 0 1px 12px;
	text-decoration: none;
}
.sf-menu a, .sf-menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:			#ccc;
}
.sf-menu li {
	font-size: 1em;
	background:		none;
}
.sf-menu li:hover,
.sf-menu li.sfHover,
.sf-menu a:focus,
.sf-menu a:hover,
.sf-menu a:active {
	outline:		0;
}
.sf-menu a:focus,
.sf-menu a:hover,
.sf-menu a:active {
	color:			#f90;
	text-decoration: underline;
}
.sf-menu li.sfHover  > a {
	color:			#f90;
	text-decoration: underline;
}


/* sub levels only */
.sf-menu ul {
}
.sf-menu ul li {
}
.sf-menu ul > li:first-child {
	border-top:		1px solid #555;	/* we only want the top border on the first item in each submenu block */
}
.sf-menu ul a {
	border-right:	1px solid #555;
	border-left:	1px solid #555;
	border-bottom:		1px solid #555;
	padding: 		4px 12px;
	text-decoration:none;
	background: none;
}
.sf-menu li li {
	background:		#333;
}
.sf-menu li li li {
	background:		#333;
}
.sf-menu ul li:hover,
.sf-menu ul li.sfHover,
.sf-menu ul a:focus,
.sf-menu ul a:hover,
.sf-menu ul a:active {
	background: #444;
	outline:		0;
}
.sf-menu ul a:focus,
.sf-menu ul a:hover,
.sf-menu ul a:active {
	text-decoration: none;
}
.sf-menu ul li.sfHover  > a {
	color:			#f90;
	text-decoration: none;
	background: none;
}


/*** arrows **/

/*.sf-menu a.sf-with-ul {*/
.sf-menu ul a.sf-with-ul {	/* this selector restricts arrows to submenus only */
	padding-right: 	27px;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}

.sf-sub-indicator {	/* hide all arrows in this rule, then display only submenu arrows in next rule */
	display:		none;
}

/*.sf-sub-indicator {*/
.sf-menu ul .sf-sub-indicator {	/* this selector restricts arrows to submenus only */
	position:		absolute;
	display:		block !important;
	right:			.75em;
	top:			1.05em; /* IE6 only */
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
	background:		url('/plugins/superfish-1.4.8/images/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}

/*a > .sf-sub-indicator {   give all except IE6 the correct values */
.sf-menu ul a > .sf-sub-indicator {  /* this selector restricts arrows to submenus only */
	top:			.8em;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}

/* apply arrow hovers to modern browsers */
/*
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
*/
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px -100px;
}

/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator { background-position:  -10px 0; }
.sf-menu ul a > .sf-sub-indicator { background-position:  0 0; }

/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
	background:	url('/plugins/superfish-1.4.8/images/shadow.png') no-repeat bottom right;
	padding: 0 8px 9px 0;
	/*
	-moz-border-radius-bottomleft: 17px;
	-moz-border-radius-topright: 17px;
	-webkit-border-top-right-radius: 17px;
	-webkit-border-bottom-left-radius: 17px;
	*/
}
.sf-shadow ul.sf-shadow-off {
	background: transparent;
}

