/* 
 *    Vertical, left-2-right menu
 *    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 *    (c) 2004 - Aleksandar Vacic, www.aplus.co.yu
 * Some rights reserved, http://creativecommons.org/licenses/by/2.0/
 *    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 */

/*        ------    Basic style    ------        */

#menu {
    /*
    width: ?;
    YOU MUST specify some width, otherwise menu would span whole page.
    Since this depends on design, do it in make-up section.
    */
    display: block;
    


}

#menu ul {
    margin: 0;
    padding: 0;
    border: 0;
    list-style-type: none;
}

#menu li {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;

    width:100%;


}
#menu li:hover {

    
}
#menu a {
    display: block;
  

    text-decoration: none;
    color: #000000;
    text-transform: uppercase;    

    padding-left:10px;
    font-family: Georgia, "Time New Roman";
    font-size: 1.4em;
}

#menu a.activemenu {
color:#2AA5C9;
}

#menu a:hover {

}
#menu li {

    padding:10px;
}

/* fix the position for 2nd level submenus. first make sure no horizontal scrollbars are visible on initial page load... */
#menu li ul {

    

}
#menu li ul li{
  padding-bottom:0px;   
  padding-left:10px;
    
}
#menu li ul li a{
   font-size: .8em;   

    
}
