/**
*********************************************
* Prototype of styles for horizontal CSS-menu
* @data 30.06.2009
*********************************************
* (X)HTML-scheme:
*  <div id="menu">
*      <ul class="menu">
*          <li><a href="#" class="parent"><span>level 1</span></a>
*              <ul>
*                  <li><a href="#" class="parent"><span>level 2</span></a>
*                      <ul><li><a href="#"><span>level 3</span></a></li></ul>
*                  </li>
*              </ul>
*          </li>
*          <li class="last"><a href="#"><span>level 1</span></a></li>
*      </ul>
*  </div>
*********************************************
 
menu::base*/
DIV#menu
{
	height: 41px;
	background: url(images/main-bg.png) repeat-x;
}
DIV#menu UL
{
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
}
DIV#menu UL.menu
{
	padding-left: 0px;
}
DIV#menu LI
{
	position: relative;
	z-index: 9;
	margin: 0;
	padding: 0 5px 0 0;
	display: block;
	float: left;
}
DIV#menu LI:hover>UL
{
	left: -2px;
}
DIV#menu A
{
	position: relative;
	z-index: 10;
	height: 41px;
	display: block;
	float: left;
	line-height: 41px;
	text-decoration: none;
	font: normal 12px "Trebuchet MS";
}
DIV#menu A:hover, DIV#menu A:hover SPAN
{
	color: #FFF;
}
DIV#menu A:hover
{
	color: rgb(218, 219, 222);
}
DIV#menu LI.current A
{
}
DIV#menu SPAN
{
	display: block;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: 95% 0;
}
DIV#menu UL UL A.parent SPAN
{
	background-position: 95% 8px;
	background-image: url(images/item-pointer.gif);
}
DIV#menu UL UL A.parent:hover SPAN
{
	background-image: url(images/item-pointer-mover.gif);
}
/*menu::level1*/
DIV#menu A
{
	padding: 0 10px;
	line-height: 30px;
	color: #E5E5E5;
}
DIV#menu SPAN
{
	margin-top: 5px;
	color: #333;
}
DIV#menu UL A:hover SPAN
{
	color: #333;
}
DIV#menu UL UL SPAN
{
	color: rgb(169, 169, 169);
}
DIV#menu UL UL A:hover SPAN
{
	color: rgb(218, 219, 222);
}
DIV#menu LI
{
	background: url(images/main-delimiter.png) no-repeat 98% 4px;
}
DIV#menu LI.last
{
	background: none;
}
/*menu::level2*/
DIV#menu UL UL LI
{
	background: none;
}
DIV#menu UL UL
{
	position: absolute;
	top: 38px;
	left: -999em;
	width: 163px;
	padding: 5px 0 0;
	background: rgb(45, 45, 45);
	margin-top: 1px;
}
DIV#menu UL UL A
{
	padding: 0 0 0 15px;
	height: auto;
	float: none;
	display: block;
	line-height: 24px;
	color: rgb(169, 169, 169);
}
DIV#menu UL UL SPAN
{
	margin-top: 0;
	padding-right: 15px;
	_padding-right: 20px;
	color: rgb(169, 169, 169);
}
DIV#menu UL UL A:hover SPAN
{
	color: #FFF;
}
DIV#menu UL UL LI.last
{
	background: none;
}
DIV#menu UL UL LI
{
	width: 100%;
}
/*menu::level3*/
DIV#menu UL UL UL
{
	padding: 0;
	margin: -38px 0 0 163px !important;
	margin-left: 172px;
}
/*colors*/
DIV#menu UL UL UL
{
	background: rgb(41, 41, 41);
}
DIV#menu UL UL UL UL
{
	background: rgb(38, 38, 38);
}
DIV#menu UL UL UL UL
{
	background: rgb(35, 35, 35);
}
/*lava lamp*/
DIV#menu LI.back
{
	background: url(images/lava.png) no-repeat right -44px !important;
	background-image: url(images/lava.gif);
	width: 13px;
	height: 44px;
	z-index: 8;
	position: absolute;
	margin: -1px 0 0 -5px;
}
DIV#menu LI.back .left
{
	background: url(images/lava.png) no-repeat top left !important;
	background-image: url(images/lava.gif);
	height: 44px;
	margin-right: 8px;
}

