/* ######### Style for Tab Interface itself ######### */

.shadetabs{      /* linha abaixo do menu */
    border-bottom: 1px solid Olive;
    /* linha abaixo do menu assume o tamanho da tabela mais interna*/
    margin-bottom: 1em;
}

.shadetabs ul{   /** para uma lista ***/
    padding: 3px 0;
    margin-right: 5px;    /*posiciona o menu na margem direira xpx da margem direita final*/
    margin-top: 1px;
    margin-bottom: 0;
    font: bold 9pt arial;
    list-style-type: none;
    text-align: right; 
    /*set to left, center, or right to align the menu as desired*/
}


.shadetabs li{   /** para um item da lista ***/
display: inline;
margin: 0px; /* também é margem entre as caixas */
}

.shadetabs li a{   /** para um link de um item da lista ***/
    /* caixa do menu */
    text-decoration: none;
    padding: 3px 1px;
    margin-right: 2px;   /* margem entre as caixas  */
    border: 1px solid #778;
    color: #004900;
    background: white url(shade.gif) top left repeat-x;
    /*THEME CHANGE HERE*/
   /*  background-color: #add57b; anterior */
    background-color: #d2f1ae;   /* COR FUNDO CAIXA */
}

.shadetabs li a:visited{  /* soh para o lin que inicia visivel so o primeiro item , neste caso soh HOME */
    color: #004900;
    /* verde escuro */
}

.shadetabs li a:hover{   /* para links visitados simples, isto eh , sem submenus - menudown */
    text-decoration: none;
    /* color: White;
    */
    color: olive;
}

.shadetabs li.selected{
}

.shadetabs li.selected a{ /*selected main tab style */
/*background-image: url(shadeactive.gif); THEME CHANGE HERE*/
border-bottom-color: white;
}

.shadetabs li.selected a:hover{ /*selected main tab style */
text-decoration: none;
color: Olive;
}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
position:absolute;
top: 0;
border: 1px solid #918d8d; /*THEME CHANGE HERE*/
border-width: 0 1px;
font: bold 9pt arial;
line-height:18px;
z-index:100;
background-color: white;
width: 200px;
visibility: hidden;
}


.dropmenudiv a{
    width: auto;
    display: block;
    text-indent: 3px;
    border-bottom: 1px solid #918d8d;
    /*THEME CHANGE HERE*/
    padding: 2px 0;
    text-decoration: none;
    font-weight: bold;
    color: #004900;  /*letra menu down */
}

* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv a:hover{ /*THEME CHANGE HERE  -   menu secundario ao ser posicionado*/
/* background-color: #e8fad5;  anterior + verde agua*/ 
background-color: #def9be;

}