/* 
    Document   : menuEsquerda
    Created on : 10/Mai/2010, 10:22:17
    Author     : Filipe Murteira
    Description:
        Purpose of the stylesheet follows.
*/

#menuE ul *{
    font-size: 11px;
    font-family:Arial,Helvetica,sans-serif;
}

#menuE ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 220px; /* Width of Menu Items */
}

#menuE ul li {
    position: relative;
    background-image: url(../imagens/linha_sep_menu_esq.png);
    background-position: left bottom;
    background-repeat: no-repeat;
    padding-bottom: 1px;
}

#menuE ul li.extra {
    background-image: url(../imagens/linha_sep_menu_esq_extra.png);
}

#menuE li ul {
    position: absolute;
    left: 220px; /* Set 1px less than menu width */
    top: 0;
    display: none;
    /*background-color: #cccccc;*/
    /*border-left: 1px solid #cccccc;*/
    padding-left: 10px;
}

/* Styles for Menu Items */
#menuE ul li a {
    color:#ffffff;
    display: block;
    text-decoration: none;
    padding: 0px;
    padding-left:10px;
    padding-right:10px;
    padding-top: 4px;
    padding-bottom: 4px;
    background-color: #555555;
    /*height: 18px;*/
    /*background-image: url(../imagens/menuE.png);
    background-repeat: no-repeat;
    background-position: 0px 0px;*/
}

#menuE ul li.extra a {
    background-color: #F6A932;
    /*background-image: url(../imagens/menuE_extra.png);*/
}

#menuE ul li.extraPrivado a {
    background-color: #757575;
}


#menuE ul li a.temSub{
    background-image: url(../imagens/seta_indica_sub.gif);
    background-repeat: no-repeat;
    background-position: 98% 50%;
}

#menuE ul li.extra a.temSub{
    background-image: url(../imagens/seta_indica_sub_extra.gif);
}


#menuE ul li.extra a:hover, #menuE ul li.extra a.selected{
     background-color: #F59E1B;
     color: #555555;
}

#menuE ul li.extraPrivado a:hover, #menuE ul li.extraPrivado a.selected{
     /*background-color: #c0c0c0;*/
     /*color: #757575;*/
     background-color: #757575;
     color: #F6A932;
}
#menuE ul li.extraPrivado a.titulo{
     /*background-color: #c0c0c0;*/
     color: #757575;
     background-image: url(../imagens/menu_area_bg.png);
}


#menuE ul li:hover>a,
#menuE ul li a:hover, #menuE ul li a.selected{
     background-color: #515151;
     color: #F6A932;
    /*background-repeat: no-repeat;
    background-position: 0px -22px;*/
}

/* Styles for SubMenu Items */
#menuE ul li ul a {
    margin: 0px;
}


/* Holly Hack. IE Requirement \*/
* html #menuE ul li { float: left; height: 1%; }
* html #menuE ul li a { height: 1%; }
/* End */

#menuE li:hover ul, #menuE li.over ul { display: block; } /* The magic */

