/****************************************************************************************************************
*
* superfish menu
*
*/

.sf-menu,
.sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
	font-size: 12px;
}
.sf-menu li {
	position: relative;
}
.sf-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
}
.sf-menu > li {
	float: left;
	margin-right: 10px;
}

.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
	display: block;
}
.sf-menu ul ul {
	top: 0;
	left: 100%;
}
/*** SKIN ***/
.sf-menu {
	float: left;
	margin-bottom: 0;
}
.sf-menu ul {
	box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.1);
	width: auto;
}

.sf-menu a {
	display: block;
	position: relative;
	line-height: 1;
	padding: 10px 8px 10px 10px;
	display: block;
	border-left: 2px #3399cc solid;
	text-decoration: none;
	zoom: 1;
}
.sf-menu ul li a {
	color: #000000;
	font-weight: normal;

}



.sf-menu li {
	background: transparent;
}

.sf-menu ul li {
	background: #fcfcfc;
}

.sf-menu li:hover,
.sf-menu li.sfHover {

}
.sf-menu li:hover > a,
.sf-menu li.sfHover > a {
	color: #fff;
	text-shadow:1px 1px 0px rgba(0,0,0,0.18);
	border-left: 2px #3399cc solid;
	background: #f09000;
}


/* Первый уровень */
.sf-menu > li:hover > a,
.sf-menu > li.sfHover > a {
	border:none;
}

/* Первый уровень */
.sf-menu > li,
.sf-menu > li:hover,
.sf-menu > li.sfHover {
	padding-left:2px;
}


/* Первый уровень */
.sf-menu > li > a {
	color: #ffffff;
	font-weight: bold;
	/*text-transform: uppercase;*/
	/*text-transform: lowercase;*/
	border:none;
}



/*** arrows (for all except IE7) **/
/* styling for both css and generated arrows */
.sf-arrows .sf-with-ul:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 1em;
	margin-top: -6px;
	height: 0;
	width: 0;
	/* order of following 3 rules important for fallbacks to work */

	border: 10px solid transparent;
	border-top-color: #f0f0f0;
	/* edit this to suit design (no rgba in IE8) */

}
.sf-menu > li > .sf-with-ul:after {
	display: none;
}
.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
	border-top-color: #fff;
	/* IE8 fallback colour */

}
/* styling for right-facing arrows */
.sf-arrows ul .sf-with-ul:after {
	margin-top: -10px;
	margin-right: -10px;
	border-color: transparent;
	border-left-color: #cccccc;
	/* edit this to suit design (no rgba in IE8) */

}
.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after {
	border-left-color: #fff;
}