/**
 *********************************************
 * 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_New.png') repeat-x;
}

div#menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
}
div#menu ul.menu {
    padding-left: 10px;
}

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: #B80915; }                  /*fff*/
div#menu a:hover { color: rgb(255,255,255);
   background:rgb(119,8,35);    }                                         /*background:rgb(0,87,174);*/ /*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 0 10px;
    line-height: 30px;
    color: #ffffff;                      /*color: #fff;    yellow F5DB6E*/
	/*  #e5e5e5;  */
}
div#menu span {
    margin-top: 5px;
color: #fff;
}
div#menu ul a:hover span {
color: #F5DB6E;
}
div#menu ul ul span {
color: rgb(245,219,110);                                /*169,169,169                rgb(240,240,240)*/
}
div#menu ul ul a:hover span {
color: rgb(240,210,100);/*218,219,222*/                                /*rgb(255,255,255)*/
}


div#menu li { background: url('images/main-delimiter_New.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: 263px;
    padding: 10px 0 0 0;
    background: #620B05;                                /*rgb(0,91,136); ,   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(240,240,240);/*169,169,169*/
}
div#menu ul ul span {
    margin-top: 0;
    padding-right: 15px;
    _padding-right:  20px;
    color: rgb(240,240,240);/*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 263px !important;
    margin-left:172px;
}

/* colors */
div#menu ul ul ul { background: rgb(98,11,5); }                                    /* background: rgb(0,91,136); }*//*41,41,41*/
div#menu ul ul ul ul { background: rgb(98,11,5); }                    /* background: rgb(0,91,136); }*//*38,38,38*/
div#menu ul ul ul ul { background: rgb(98,11,5); }                /* background: rgb(0,91,136); }*//*35,35,35*/


/* lava lamp */
div#menu li.back {
    background: url('images/lava.gif') no-repeat right -44px !important;
    width:13px; height:44px; z-index:8; position:absolute; margin-left:-5px; margin-right:0; margin-top:-1px; margin-bottom:0; background-image:url('images/lava.gif') !important
}
div#menu li.back .left {
    background: url('images/lava.gif') no-repeat top left !important;
    height:44px; margin-right:8px; background-image:url('images/lava.gif') !important
}