/* 
 *        Horizontal, top-2-bottom menu
 *        Copyright Aleksandar Vacic, www.aplus.co.yu, some rights reserved http://creativecommons.org/licenses/by/2.0/
 */

/*        ------    Basic style    ------        */

#menu {
    display: block;
}

#menu ul {
    margin: 0;
    padding: 0;
    border: 0;
    list-style-type: none;
}

#menu li {
    margin: 0;
    padding: 0;
    border: 0;
    display: block;
    float: left;
    position: relative;
}

#menu a {
    display: block;
}

#menu li li {
    width: 100%;
}

/* fix the position for 2nd level submenus. first make sure no horizontal scrollbars are visible on initial page load... */
#menu li li ul {
    top: 0;
    left: 0;
}

/* ...and then place it where it should be when shown */
#menu li li:hover ul {
    left: 100%;
}

/* initialy hide all sub menus */
#menu li ul {
    display: none;
    position: absolute;
    z-index: 10;
}

/* display them on hover */
#menu li:hover>ul {
    display: block;
}

/* this is needed if you want to style #menu div - force containment of floated LIs inside of main UL */
#menuList:after {
    content: ".";
    height: 0;
    display: block;
    visibility: hidden;
    overflow: hidden;
    clear: both;
}

/* Fix for IE5/Mac \*//*/
#menu a {
    float: left;
}

#menuList {
    display: inline-block;
}
/*  */
                    
/*        ------   Make-up    --------            */

#menu {
    color: #000;
  

        position: relative;
   
    top: -20px;
 
    padding-top: 1px;
    margin-right: 30px;

}

#menu li:hover {
    
}

#menu a {
    text-decoration: none;
    text-align: center;
    color: #FFF;
    padding: 4px 5px 5px;
}

#menu li:hover>a {
    color: #fff;
    text-decoration: underline;
}

#menu li ul {
    color: #000;
  
       margin-top: -4px;
    width: 120px;
}

#menu li ul a {
    text-align: left;
}

#menu li li.submenu {
  
}


    
.tab_1, .tab_2, .tab_3, .tab_4, .tab_5
    {
    width:  120px;
    height: 15px;
    text-align: center;
    margin-right: -10px;
    color:  #FFF;
    font-weight: bold;
    text-decoration: none;
    font-size: 11px;
    padding-top: 6px;
    padding-left: 10px;

    background-repeat: no-repeat;
    position: relative;
    overflow: hidden; 
    }

.tab_1
    {
    background-image: url(/cms/tpl/img/tab1.png);
    }

.tab_2
    {
    background-image: url(/cms/tpl/img/tab2.png);
    }

.tab_3
    {
    background-image: url(/cms/tpl/img/tab3.png);
    }

.tab_4
    {
    background-image: url(/cms/tpl/img/tab4.png);
    }

.tab_5
    {
    background-image: url(/cms/tpl/img/tab5.png);
    }