.chromestyle{
width: 100%; /*PORCENTAGEM DE OCUPAÇÃO DA TABELA*/
font-weight: bold;
}

.chromestyle:after{ /*Adicionar margem entre menu eo resto para conteúdo Firefox*/
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}

.chromestyle ul{
border: 1px solid #BBB;
width: 100%;
padding: 4px 0;
margin: 0;
text-align: center; /*POSICIONAMENTO DO MENU ["left" | "center" | "right"]*/
}

.chromestyle ul li{
display: inline;
}

.chromestyle ul li a{
/*color: #494949;*/
padding: 4px 7px;
margin: 0;
text-decoration: none;
border-right: 1px solid #DADADA;
}

.chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
/*background: url(chromebg-over.gif) center center repeat-x;*/ /*INSERIR IMAGEM DE FUNDO*/
}

/* ######### Formatação do estilo para o menu Drop Down ######### */

.dropmenudiv{
position: absolute;
top: 0;
border: 1px solid #BBB; /*COR DAS LINHAS QUE FORMAM O QUADRO (BORDAS)*/
border-bottom-width: 0; /*TAMANHO DA SOMBRA*/
font:normal 10px Arial; /*FORMATAÇÃO DA FONTE DAS LETRAS*/
line-height:18px;
z-index:100; /*estava 1*/
background-color: white; /*COR DO FUNDO SEM SER SELECIONADO*/
width: 200px;
visibility: hidden;
filter: progid:DXImageTransform.Microsoft.Shadow(color=#CACACA,direction=135,strength=4); /*COR DA SOMBRA*/
}


.dropmenudiv a{
width: auto;
display: block;
text-indent: 3px;
border-bottom: 1px solid #BBB; /*COR DAS LINHAS HORIZONTAIS - #BBB*/
padding: 2px 0;
text-decoration: none;
font-weight: bold;
color: #01172F; /*Cor da fonte*/
}

* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}

.dropmenudiv a:hover{ /*COR DE FUNDO AO SELECIONAR O ITEM*/
background-color: #F0F0F0;
}