
/*** ESSENTIAL STYLES ***/
/*** Основной стиль ***/
.sf-menu, .sf-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.sf-menu {
	line-height:	1.0;

	float:			left;
	margin-bottom:	0em;
}
.sf-menu a {
	display:		block;
	position:		relative;
	padding: 		.3em .7em;
}
.sf-menu li {
	float:			left;
	text-align:		left;
	position:		relative;
	background:		#FFFFFF;
}
.sf-menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}

/*** Главный пункт меню  ul.sf-menu li.current a  ***/
.sf-menu li.current {
	padding-bottom:	0.2em;
	border:			1px solid #FFFFFF;
	border-bottom:	3px solid #FFFFFF;
	background:		#FFFFFF;
	z-index:		59;
}
.sf-menu li.current:hover {
	border:	1px solid #BEBEBE;
	border-bottom:	3px solid #FFFFFF;
	z-index:		99;
}
.sf-menu li.current a {
	text-decoration:none;
}


/*** Выпадающее меню I уровень  ul.sf-menu li.current ul li a  ***/
.sf-menu ul {
	border:			1px solid #BEBEBE;
	position:		absolute;
	top:			-999em;
	left:			-0.05em;
	opacity:		0.9;
/*	width:			15em; /* left offset of submenus need to match (see below) */
	z-index:		79;
}

.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	top:			1.7em; /* match top ul list item height */
	z-index:		79;
}

.sf-menu li li a {
	color:#2B6182;
	text-decoration:underline;
	font:13px Arial;
	line-height:	1.7em;
}
.sf-menu li li a:hover {
	color:#FFFFFF;
	background-color: #2B6182;
}


/*** arrows **/
.sf-menu a.sf-with-ul {

/*	background:		url('../arr-1.png') no-repeat 10px 0px;	/*	*/
	padding-right: 	2.15em;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			0.7em;
	top:			0.4em; /* IE6 only */
	width:			23px;
	height:			17px;
	text-indent: 	-999em;
	overflow:		hidden;
	background:		url('../images/icons/mainmenu-arrow.gif') no-repeat 0px 0px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			0.4em;
	background-position: 0 0px; /* 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*/
	background:		url('../images/icons/mainmenu-arrow.gif') no-repeat 0px -17px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}

	/* 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*/
/*	}	/*	*/



