/* Customized superFish - Frantsi */


/*** ESSENTIAL STYLES ***/
.superfish, .superfish * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.superfish {
	line-height:	1;
}
.superfish ul {
	position:		absolute;
	top:			-999em;
	width:			10em; /* left offset of submenus need to match (see below) */
}
.superfish ul li {
	width:			100%;
}
.superfish li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.superfish li {
	float:			left;
	position:		relative;
}
.superfish a {
	display:		block;
	position:		relative;
}
.superfish li:hover ul,
.superfish li.sfHover ul {
	left:			30px;
	top:			30px; /* match top ul list item height */
	z-index:		99;
}
ul.superfish li:hover li ul,
ul.superfish li.sfHover li ul {
	top:			-999em;
}
ul.superfish li li:hover ul,
ul.superfish li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
}
ul.superfish li li:hover li ul,
ul.superfish li li.sfHover li ul {
	top:			-999em;
}
ul.superfish li li li:hover ul,
ul.superfish li li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
}

/*** DEMO SKIN ***/
.superfish {
	position: absolute;
	top: 35px;
	right: 10px;
}

.superfish a:hover, .superfish li li:hover {
	color: #415c90;
}

.superfish a, .superfish a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	text-decoration:none;
}

.superfish li a {
	color: #5173b5;
}

.superfish li a.active {
	font-weight: bold;
}

.superfish li {
	padding: 0 20px;
	border-left: solid 1px #5173b5;
	font-family: Georgia, Arial;
	font-size: 14px;
	line-height: 1;
}
.superfish li:first-child {
	border-left: none 0px;
}
.superfish li li {
	line-height: 1;
	font-size: 12px;
	color: #007ea9;
	padding: 0 0 0.5em 0;
	font-family: Arial;
	border: 0px none;
	text-decoration: none;
	list-style-position: outside;
	list-style-type: disc;
}

.superfish li li a {
	color: #007ea9;
}
.superfish li li li {

}
.superfish li:hover, .superfish li.sfHover,
.superfish a:focus, .superfish a:hover, .superfish a:active {
	/*text-decoration: underline;*/
}

.superfish a.selected {
	text-decoration: underline;
}

/*** arrows **/
.superfish a.sf-with-ul {
	padding-right: 	2.25em;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator superfish
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			.8em;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply 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 {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.superfish ul .sf-sub-indicator { background-position:  -10px 0; }
.superfish ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.superfish ul a:focus > .sf-sub-indicator,
.superfish ul a:hover > .sf-sub-indicator,
.superfish ul a:active > .sf-sub-indicator,
.superfish ul li:hover > a > .sf-sub-indicator,
.superfish 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('../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; */
}