/************** структура шаблона *****************
* id=menu_top - левое меню, описывается и в st.css
	- id=top-menu-structure - div
			
			Структура меню:
			UL LI
				UL LI
					Ul LI /LI /UL
				/LI /UL
			/LI /UL 

**************************************************
!!! все фоны должны находиться в папке pic !!! 
**************************************************/

/************ Структура для меню ****************/
#menu_top{
	padding-right:200px;
}
#top-menu-structure{
  	margin: 0;
	padding: 0;
}
#top-menu-structure *{
	margin: 0;
	padding: 0;
}
/********* основное меню *****************/
#top-menu-structure ul{
	list-style:none;
	float:left;
	margin: 0;
	padding: 0;
}
#top-menu-structure li{       /* разделялки в меню */
    border-right: 2px solid #fff;
    position: relative;
	margin: 0;
	padding: 0;
}
#top-menu-structure li:hover{
	cursor:pointer;
	z-index:100;
}
#top-menu-structure li a{      /* текст меню */
	margin: 0;
	padding: 8px 20px 8px 20px;
	font-size: 12px;
	display:block;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
 	font-weight: bold;
    font-family: Arial;
    font-style: normal;

}
#top-menu-structure li a:hover{    /* рамка подменю */
     background-image: url(pic/menu_gor_select.jpg);
     background-repeat: repeat-x;
     background-position: center;
}
#top-menu-structure li a#top-current{     /* фон активации */
     background-image: url(pic/menu_gor_select.jpg);
     background-repeat: repeat-x;
     background-position: center;
}
/********* подменю 1 уровня *****************/
#top-menu-structure ul ul{

	background-color: #e9e9e9;
    border: 1px solid #549200;
    border-bottom: 0;
	position: absolute;
	top: 30px;
	left: -1px;
	display: none;
	width: 170px;
	padding: 0;
}
#top-menu-structure ul ul li{ /* выскакивающие меню при наведении, фон */
	padding: 0;
	padding-left: 10px;
    border: 0px;
	margin: 0;
    border-bottom: 1px solid #549200;
}
#top-menu-structure ul ul a{ /* выскакивающие меню при наведении, наполнение */
	display:block;
	color: #4f4f4f;
 	text-align: left;
	padding: 5px;
    padding-left: 15px;
	text-decoration: none;
    background-image: url(pic/spisok_dot.jpg);
    background-position: left;
    background-repeat: no-repeat;
	font-size: 12px;
    font-weight: bold;
    font-style: normal;
    white-space: normal
}
#top-menu-structure ul ul a:hover{    /* текст активного подменю */
     background-image: url(pic/spisok_dot.jpg);
    background-position: left;
    background-repeat: no-repeat;
	color: #549200;
}
#top-menu-structure ul ul a#top-current{
	color: #549200;
    font-weight: bold;
        background-image: url(pic/spisok_dot.jpg);
    background-position: left;
    background-repeat: no-repeat;
}
/********* подменю 2 уровня *****************/
#top-menu-structure ul ul ul{
	top: -1px;
	left: 99%;
	width: 170px;
}
#top-menu-structure ul ul ul li{}
#top-menu-structure ul ul ul a{}
#top-menu-structure ul ul ul a:hover{}
#top-menu-structure ul ul ul a#top-current{}
/*************** НЕ МЕНЯЕМОЕ ****************/
/* Fix IE. Hide from IE Mac \*/
* html #top-menu-structure ul li { float: left; height: 1%; }
* html #top-menu-structure ul li a { height: 1%; }
* html #top-menu-structure ul.one{width: 10px;}
/* End */
#top-menu-structure li:hover ul ul,
#top-menu-structure li li:hover ul ul
{display:none;}

#top-menu-structure li:hover ul,
#top-menu-structure li li:hover ul
{display:block;}
