/* CSS Document */

/*

 -----------------------------------------------------------------------

 ESCOPO:
 ESTE CSS CONTEMPLA OS ELEMENTOS RELACIONADOS AO SISTEMA

 ORGANIZACAO DO CSS:
 ELEMENTOS HTML , ELEMENTOS ESTRUTURAIS E CASCATA DOS ELEMENTOS ESTRUTURAIS
 */

/* === ELEMENTOS HTML */
html {
    height: 100%;
}
body {
    margin: 0px;
    padding: 0px;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    font-family: Lucida Grande, Lucida Sans, Arial, sans-serif;
    font-size: 13px;
    line-height: 18px;
    /*font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;*/

}

/*
 * Padrão para mensagens de alerta
 * */
.alert {
    padding: 0px 35px 0px 14px;
    margin: 0;
    color: #C09853;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    background-color: #FCF8E3;
    border: 1px solid #FBEED5;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-size: 0.7em;
}
.alert-error {
    color: #B94A48;
    background-color: #F2DEDE;
    border-color: #EED3D7;
}
.alert-success {
    color: #468847;
    background-color: #DFF0D8;
    border-color: #D6E9C6;
}

/*
 * Estilo padrão de TabBar e TabButton
 */

.tab-button {
    height: 36px;
    width: 36px;
    border: solid black 1px;
    border-right: none;
    background: #333 center no-repeat;
    opacity: 0.8;
}
.tab-button:hover {
    opacity: 0.6;
    background-color: #c3c3c3;
    box-shadow: inset 5px 5px 8px 5px rgba(0,0,0,0.2);
    cursor: pointer;
}

.tab-button:active, .tab-button-active {

    background-color: #c3c3c3;
    box-shadow: inset 5px 5px 15px -2px #000;
    opacity: 1 !important;
}

.tab-button-active:hover {
    cursor: e-resize;
}
/*
 * Barra de rolagem
 */
::-webkit-scrollbar {
    width: 10px;
}

/* Trilha da barra de rolagem */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

/* Handle - parte que o mouse agarra */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(0,0,0,0.2);
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(0,0,0,0.4);
}
/*Pertence ao create user*/

.tab-nolas-button {
    height: 36px;
    width: 36px;
    border: solid black 1px;
    border-right: none;
    background: #333 center no-repeat;
    opacity: 0.8;
    position: absolute;
    top: 50%;
    right: 391px;
    color: white;
    line-height: 36px;
    text-align: center;
    font-size: 39px;
    font-weight: bold;
}


