/************** структура шаблона *****************
* 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{
	vertical-align: Top;
}
#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{
	position: relative;
	margin: 0;
	padding: 0;
}
#top-menu-structure li:hover{
	cursor:pointer;
	z-index:100;
}
#top-menu-structure li a{
	margin: 0;
	padding: 2px 5px 2px 5px;
	font-size: 9pt;
	display:block;
	text-decoration: none;
	white-space: nowrap;
 	font-weight: normal;
}
#top-menu-structure li a:hover{
	text-decoration: underline;
}
#top-menu-structure li a#top-current{
 	font-weight: bold;
}
/********* подменю 1 уровня *****************/
#top-menu-structure ul ul{
	position: absolute;
	top: 18px;
	left: 0px;
	display: none;
	width: 320px;
	border: 0;
	padding: 0;
}
#top-menu-structure ul ul li{
	margin: 0;
}
#top-menu-structure ul ul a{
	display:block;
 	text-align: left;
	padding: 3px 4px 3px 4px;
	text-decoration: none;
  white-space: normal;
}
#top-menu-structure ul ul a:hover{
}
#top-menu-structure ul ul a#top-current{
}
/********* подменю 2 уровня *****************/
#top-menu-structure ul ul ul{
	top: -2px;
	left: 316px;
	width: 320px;
}
#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;}
