/**
 *********************************************
 * 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:28px;
    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:30px;
}
div#menu li {
    position: relative;
    z-index: 9;
    margin: 0;
    padding: 0 15px 0 15px;
    display: block;
    float: left;
}
div#menu li:hover>ul {
    left: -2px;
}
div#menu a {
    position: relative;
    z-index: 10;
    height: 28px;
    display: block;
    float: left;
    line-height: 28px;
    text-decoration: none;
    font: normal 16px Arial;
    
}
div#menu a:hover, div#menu a:hover span { color: #2F749B; }
div#menu li.current a  
{
    color: #0D0A00;
}
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: 28px;
    color: #2F749B;
}
div#menu span {
    margin-top: 0px;
}/**@replace#1*/
/*div#menu li { background: url(images/main-delimiter.png) 98% 4px no-repeat; }*/
div#menu li { background: none; }
div#menu li.last { background: none; }

/* menu::level2 */
div#menu ul ul li { background: none;}
div#menu ul ul {
    position: absolute;
    top: 25px;/* 27 */
    left: -999em;
    width: 220px;
    padding: 5px 0 0 0;
    /*background: rgb(47,116,155);  /*LACİVERT*/
    /*background: rgb(193,231,184); /* C1E7B8 YEŞİL*/
    /*background: #0D0A00; */
    margin-top:1px;
    margin-left:4px;
    font: normal 14px arial;
    background: #BBD3DC;
    border: solid 2px rgb(47,116,155);
}
div#menu ul ul a {
    padding:  0 0 0 0px;
    height: 20px;
    float: left;
    display: block;
    line-height: 28px;
    color: rgb(255,255,255);
    /*color: rgb(255,102,28);
color: rgb(0,0,0);
*/
    
    font: normal 14px arial;
}
div#menu ul ul span {
    margin-top: 0;
    padding-right: 20px;
    _padding-right: 28px;
    color: rgb(255,255,255);
    /*color: rgb(255,102,28);
color: rgb(0,0,0);
*/
    font: normal 14px arial;
    display: block;
    float:none;
    width: 200px;
    text-align:left;
}
div#menu ul ul a:hover span {
    /*color: #fff;
    color: rgb(255,102,28);
    background: rgb(255, 102, 0);  KAVUNİÇİ*/
    color: rgb(255,255,255);
    background:rgb(47,116,155);
    /*background: rgb(220, 232, 183); 
    /*background:#0F2633;AÇIK SARI */
}
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 -28px !important;*/
    background: url(images/lava1.png) no-repeat  ;
    background-image: url(images/lava1.gif);
    width: 13px;
    height: 30px;
    z-index: 8;
    position: absolute;
    margin: -1px 0 0 -13px;
   
}
div#menu li.back .left {
    background: url(images/lava.png) no-repeat top left !important;
    background-image: url(images/lava.gif);
    height: 29px;
    margin-right: 8px;
}


