/* Estilos aplicados via JavaScript a todos os selects de formulário */
select.sem_estilizacao{
    background-color: white;
    font-size: 11px;
}
.select{
    z-index: 2;
    -webkit-appearance: none;
    cursor: pointer;
    height: 27px !important;
}
.divContornandoSelect{
    display: inline-block;
    height: 20px !important;
}
.select_container{
    display: inline-block;
    background-color: white;
    border: 1px solid #a8a8a8;
    border-radius: 3px;
    padding-left: 3px;
    box-shadow: inset 0 2px 2px #8f8f8f;
    text-align: justify;
    cursor: pointer;
    height: 20px !important;
}
.select_container_hover, .select_container:hover, .select_container:focus{
    outline: none;
    border: 1px solid #70ab96 !important;
    box-shadow: 0px 0px 8px #85cbb2, inset 0 2px 2px #8f8f8f !important;
}
.select_container .select_opcao_padrao{
    display: inline-block;
    margin: 0;
    padding: 0;
    color: #313131;
    font-size: 11px;
    background: none;
    box-shadow: none;
    overflow: hidden;
    line-height: 18px;
    height: 20px !important;
}
.select_icone_direita{
    display: inline-block;
    vertical-align: middle;
    background: url('../imagens/estiliza_select/form_sprites.png');
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    width: 18px !important;
    height: 18px !important;
}
.select_icone_direita_hover, .select_container:hover .select_icone_direita, .select_container:focus .select_icone_direita{
    background-position: 0px -18px !important;
}
.select:disabled, .select:disabled + .select_container{
    cursor: default;
    background-color: lightgray;
}
.select:disabled + .select_container>.select_opcao_padrao{
    color: gray;
}
.select option[selected]{
    background-color: #ccc;
}