@charset "UTF-8";

/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	list-style-type: none;
	cursor: default;
	width: auto;
	font-variant: small-caps;
	font-weight: bold;
	background-position: center;
	text-align: center;
	vertical-align: top;
	border: 0px outset #CCCCCC;
	padding: 0;
	margin: 0 auto;
}

/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 100;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: center;
	cursor: text;
	width: 167px;
	float: left;
	z-index: 10;
	border: 0px outset #CCCCCC;
	height: 37px;
	background-image: url(../pic/knopka_menu.png);
	background-position: center;
	background-repeat: no-repeat;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 100;
	cursor: default;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
    width: 100%;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Кнопки первого уровня (по умолчанию) */
ul.MenuBarHorizontal li
{
	font-size: 16px;
	font-family: Verdana;
	font-weight: bold;
}
/* Кнопки второго уровня (по умолчанию) */
ul.MenuBarHorizontal ul li
{
	font-size: 14px;
	font-family: Verdana;
	font-weight: bold;
	text-align: center;
}
/* Кнопки-ссылки */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	padding: 0.4em;
	color: #FFFFFF;
	text-decoration: none;
	text-align: center;
	font-variant: small-caps;
	background-repeat: no-repeat;
}
/* Кнопки-ссылки при наведении */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-image: url(../pic/knopka_menu2.png);
	background-position: top;
	background-repeat: no-repeat;
	text-align: center;
	font-size: 15px;
	font-family: Verdana;
	font-weight: bold;
}
/* Кнопки-ссылки при наведении (текст) */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	font-weight: bold;
	text-align: center;
	color: #62BEFC;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 100;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
	display: inline;
	}
}
