/*---- GERAL ----*/
body {
    background-image: url(../images/bg.jpg);
    font-family: prototype, tahoma, Helvetica, sans-serif;
    margin: 0px;    
}
img {border: none;}

.centraliza {
    margin-left: auto;
    margin-right: auto;  
}
.travaLinha { white-space: nowrap;}
.middleLine { vertical-align: middle}
.viewArea { display: normal;}
.hiddenArea { display: none;}

input[type=date] {
    padding: 2px 2px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: prototype, tahoma, Helvetica, sans-serif;
}

/*----- Script Default Page: Login -----*/
#containerLogin {
    width: 100vw;
	height: 60vh;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.tableLogin {
    margin-left: auto;
    margin-right: auto;
    width: 330px;
    padding: 5px 5px 0px 5px; 
    background-color: #ededed;
    border: 1px solid #bbb;
    border-radius: 5px;
    box-shadow: 2px 2px 1px #777;
    text-align: center;
    font-size: 12px;
    z-index: 9995;
}
    .tableLogin .logoLogin { 
        padding-bottom: 5px;
        width: 90%;
        height: auto;
    }
    .tableLogin .fontLabelLogin {        
        color: #002C51;
        text-align: right;
    }
    .tableLogin .inputLogin {
        color: #002d51;
        background-color: #e1e1e1;
        border: 1px solid rgb( 188, 188, 188 );
        border-radius: 3px;
        height: 27px;
        width: 85%;
        text-align: center;
    }
    .tableLogin .inputLogin:focus {
        background-color: #d9d9d9;
        outline: none;
        border: 1px solid #002d51;
    }
    .tableLogin .divEsqueciSenha {
        color: #999;
        cursor: pointer;
    }
        .tableLogin .divEsqueciSenha:hover {
            color: #002C51;
        }
    .tableLogin .botaoLogin {
        background: #82878a;
        background-image: linear-gradient(to bottom, #82878a, #35383b);
        border-radius: 5px;
        text-shadow: 2px 2px 3px #666666;
        font-family: Arial;
        color: #eee;
        padding: 8px 35px;
        border: solid #9b9fa1 1px;
        cursor: pointer;
    }
        .tableLogin .botaoLogin:hover {
            background: #35383b;
            background-image: linear-gradient(to bottom, #35383b, #82878a);
            color: #fff;
        }

/*----- Classes: Topo Sistema -----*/
#cabecalhoEmpresa {
    width: 100%;
    padding: 5px 0px;
    height: 42px;
}
    #cabecalhoEmpresa div {
        display: inline-block;
        vertical-align: top;
    }
    #cabecalhoEmpresa .logoSystema {
        float: left;
        vertical-align: top;
        margin: 1px 10px;
    }
    #cabecalhoEmpresa .icoSysDestino {
        padding-top: 5px;
    }
    #cabecalhoEmpresa .logoEmpresa {
        padding: 0px 0px;
        text-align: center;
        color: black;
    }
    #cabecalhoEmpresa .tipoSistema {
        margin-left: 10px;
        color: #ff0000;
        font-weight: bold;
        font-size: 36px;
    }
    #cabecalhoEmpresa .divNomeUsuario {
        float: right;
        padding: 20px 20px 5px 0px;
    }

/*----- Topo Sistema -----*/
#headSistema {
    width: 100%;
    padding: 3px 0px;
    height: 48px;
    background-image: linear-gradient(to bottom, #fff, #ccc);
    border-bottom: 1px solid #666;
}
    #headSistema .logoSystema {
        float: left;
        padding-top: 3px;
        width: 200px;
        text-align: center;
        border-right: 1px solid #bbb;
    }
    #headSistema .icoSysDestino {
        float: left;
        padding-top: 8px;
        margin-left: 10px;
    }
    #headSistema .logoEmpresa {
        float: left;
        vertical-align: top;
        margin: 1px 10px;
    }
    #headSistema .tipoSistema {
        /*float: left;*/
        display: inline-block;
        color: #ff0000;
        font-weight: bold;
        font-size: 2.2em;
    }
    #headSistema .linkUsuarioLogado {
        float: right;
        text-align: right;
        margin: 30px 20px 0px 0px;
        color: #002C51;
        font-size: 1em;
        font-weight: normal;
        font-style: italic;
    }

/*----- DropDown Agencias -----*/
.dropdown-fixed {
    position: relative; /* Fixa o elemento na janela do navegador */
    top: 0px;
    left: 0px;
    z-index: 1000; /* Garante que o dropdown fique acima de outros elementos */
}

.dropdown-button {
    background-color: #f9f9f9;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

    .dropdown-button:hover {
        background-color: #ccc;
        color: #fff;
        border: 1px solid #999;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: #000;
        padding: 6px 3px 6px 10px;
        text-decoration: none;
        display: block;
        white-space: nowrap;
        border-bottom: 1px solid #ccc;
    }

        .dropdown-content a img {
            max-width: 100%;
            height: auto;
            display: block; /* Para evitar espaços extras abaixo da imagem */
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background-color: #ddd;
        }

.dropdown-fixed:hover .dropdown-content {
    display: block;
}

/*.conteudo-principal {
    padding: 20px;
    margin-top: 60px;
}*/

/*----- Classes: Pagína Mensagem -----*/
#containerMensageiro {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-top: 60px;
    font-size: 12px;
    background-color: transparent;
    font-weight: normal;
    text-align: center;
    z-index: 9995;
}
    #containerMensageiro .tituloMensageiro, .rodapeMensageiro {
        background-image: linear-gradient(to bottom, #efefef, #ccc);
        padding: 5px 0px;
        border: 1px solid #888;        
    }
    #containerMensageiro .tituloMensageiro {
        font-size: 1.5em;
        color: #444;
        box-shadow: 0 0px 0 #fff inset;
        text-shadow: 0.08em 0.08em 0.1em #aaa;
        border-bottom: none;
        border-radius: 5px 5px 0px 0px;
    }
    #containerMensageiro .areaMensageiro {
        background-image: linear-gradient(to bottom, #FFFAFA, #ddd);
        border: 1px solid #888;  
        padding: 8px 10px;
    }
    #containerMensageiro .divMensageiro {   
        padding: 8px 0px;
        font-size: 1.2em;
        font-weight: normal;
    }
    #containerMensageiro .tableMensageiro {
        width: 100%;
        border-collapse: separate;
        border-spacing: 5px 5px;
        text-align: left;
    }
        #containerMensageiro .tableMensageiro td.center {
            text-align: center;
        }
        #containerMensageiro .tableMensageiro td.right {
            text-align: right;
        }
        #containerMensageiro .tableMensageiro td.label {
            font-size: 1.2em;
        }
        #containerMensageiro .tableMensageiro input.default {
            padding: 5px 3px;
            font-size: 1.2em;
            color: #333;
            border-radius: 4px;
            border: 1px solid #ccc;
        }
        #containerMensageiro .tableMensageiro select option {
            padding: 2px 3px;
            border-radius: 2px;
            border-bottom: 1px solid #efefef;
        }
        #containerMensageiro .tableMensageiro select select {
            background: transparent;
            padding: 5px;
            line-height: 1;
            border: 0;
            border-radius: 0;
            height: 28px;
            -webkit-appearance: none;
            color: #000;
        }
    #containerMensageiro .rodapeMensageiro {
        border-radius: 0px 0px 5px 5px;
        border-top: none;
    }

.labelSenha  {
    position: relative;
    bottom: 5px;
    color: #2F4F4F;
}
/*--------- Divs ---------*/
.divEmLinha {
    display: inline-block;
}
.divLeftArea, .divCenterArea, .divRightArea {
    display: inline-block;
    vertical-align: top;
    width: calc(99vw / 3);
}
.divBtnLeft, .divBtnCenter, .divBtnRight {
    width: 31.5%;
}
.divBtnLeft {
    float: left;
    text-align: left;
    margin-left: 5px;
}
.divBtnCenter {
    display: inline-block;
    text-align: center;
}
.divBtnRight {
    float: right;
    text-align: right;
    margin-right: 5px;
}
.divTabela {
    width: 100%;
}
    .divTabela div.linha {
        padding: 5px 0px;
    }
    .divTabela div.linha2 {
        padding: 3px 0px;
    }
    .divTabela div.coluna {
        display: inline-block;        
    }

.divTabelaForm div.row, div.col {
    margin: 2px;
    padding: 0;
}
.divTabelaForm div.row {
    padding: 0;
    clear: both;
}
.divTabelaForm div.col {
    float: left;
}

.divLinkIcons {
    display: inline-block;
    padding: 2px; 
    border-radius: 3px;
    border: 1px solid #666;
    cursor: pointer;
}
    .divLinkIcons img {
        width: 18px;
        height: 18px;
    }
    .divLinkIcons:hover {
        padding: 2px;
        background-color: #aaa;
        border: 1px solid #777;
    }

#tituloTopo {
    font-size: 1.2em;
    color: #333;
    text-shadow: 0.12em 0.12em 0.1em #ccc;
}
.divLink { 
    padding: 3px; 
	-webkit-border-radius: 3;
	-moz-border-radius: 3;
	border-radius: 3px;
    cursor: pointer;
}
    .divLink:hover {
        padding: 2px;
        background-color: #ddd;
        border: 1px solid #888;
    }
.divLinkDisabled { 
    padding: 3px; 
}
.divLinkForms {
    display: inline-block;
    background-image: linear-gradient(to bottom, #eee, #ccc);
    padding: 2px; 
    border-radius: 3px;
    border: 1px solid #666;
    cursor: pointer;
}
    .divLinkForms img {
        width: 18px;
        height: 18px;
    }
    .divLinkForms:hover {
        background-image: linear-gradient(to bottom, #aaa, #eee);
        padding: 2px;
        background-color: #FFCB05;
        border: 1px solid #666;
    }

.divSemResultado {
    margin: 40px auto 0px auto;
    max-width: 460px;
    padding: 10px;
    text-align: center;
    color: #002C51;
    background-image: linear-gradient(to bottom, #fff, #ccc);
    border: 1px solid #888;
}
.divDestaque {
    padding: 5px;
    text-align: center;
    color: #002C51;
    background-image: linear-gradient(to bottom, #fff, #ccc);
    border: 1px solid #888;
}
.barraLoading {
    width: 100%;
    text-align: left;
    padding: 5px 0px 0px 8px;
}
    .barraLoading img {
        max-width: 45%;
        height: auto;
    } 
.legendaLateral {
    float: right;
}
    .legendaLateral .tableLegenda td.linhasDetalhe {
        border-bottom: 1px solid #bbb;
    }
    .legendaLateral .tableLegenda div {
        display: inline-block;
    }
    .legendaLateral .divInterna {        
        color: #333;
        text-align: right;
        display: inline-block;
        padding-right: 4px;
    }
    .legendaLateral .divQuadrados {
        float: right;
    }
    .legendaLateral .colorArea {
        width: 20px;
        height: 20px;
        border: 1px solid #ccc;
    }

.efeitoCortina {
    position: relative;
    background-color: #ddd;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity:0.5;
    transition: 1s;
}

.pill {
    background-color: #0099cc;
    border: none;
    color: #fff;
    padding: 4px 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 10px;
    font-weight: bold;
}
/*=== Status HI ===*/
.divLinkStatus { 
    padding: 3px; 
	-webkit-border-radius: 3;
	-moz-border-radius: 3;
	border-radius: 3px;
    cursor: pointer;
}
    .divLinkStatus:hover {
        padding: 2px;
        background-color: #ddd;
        border: 1px solid #888;
        color: #333;
    }
.statusDefault {
    color: inherit;
}
.statusNoPrazo, .statusOK, .statusAtencao, .statusUrgente, .statusUltimoDia, .statusPerdido, .statusPago, .statusCinza {
    padding: 3px;
    border-radius: 3px;
}
.statusNoPrazo {
    color: #0033cc;
    font-weight: bold;
}
.statusOK {
    background-color: #009900;
    color: #fff;
}
.statusAtencao {
    background-color: #ff8000;
    color: #000;
}
.statusUrgente {
    background-color: #ff4000;
    color: #fff;
}
.statusUltimoDia {
    background-color: #ff0000;
    color: #fff;
    font-weight: bold;
}
.statusPerdido {
    background-color: #cc0000;
    color: #fff;
    font-weight: bold;
}
.statusPago {
    background-color: #145aa7;
    color: #fff;
    font-weight: bold;
}
.statusCinza {
    background-color: #aaa;
    color: #000;
}
/*--------- Links ---------*/
a { 
    text-decoration: none;
    cursor: pointer;
}
a:link { color: #005D6B;}
a:visited { color: #005D6B;}
a:hover { color: black;}
a:active { color: #800080;}

a.link2:link { color: #DE9A18;}
a.link2:visited { color: #DE9A18;}
a.link2:hover { color: #005D6B;}
a.link2:active { color: #800080;}

a.link6:link { color: #0000FF;}
a.link6:visited { color: #0000FF;}
a.link6:hover { color: #FFFFFF;}
a.link6:active { color: #800080; font-weight: bold;}

a.link7:link { color: #FF0000;}
a.link7:visited { color: #FF0000;}
a.link7:hover { color: #000;}
a.link7:active { color: #800080; font-weight: bold;}

.subheader {
    font-size: 8pt;
    color: #00697B;
    font-family: arial, helvetica, sans-serif;
    text-decoration: none;
    cursor: pointer;
}
    .subheader:hover {
        color: #DE9A21;
    }
/*----- Botões ------*/
.btPadrao, .btExecute, .btVoltar, .btnImprimir, .btnDevDuv, .btnGrafite, .btnAlerta, .btnDesabilitado {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-radius: 4px;
    font-family: Arial;
    font-size: 12px;
    padding: 5px 15px;
    cursor: pointer;
}
.btPadrao {
    background-image: linear-gradient(to bottom, #eee, #ccc);
    border: 1px solid #888;
    text-shadow: 2px 2px 10px #757575;
    color: #383838;
}
    .btPadrao:hover {
        background-image: linear-gradient(to bottom, #aaa, #eee);
        color: #484848;
        border: 1px solid #aaa;
        text-shadow: 1px 1px 2px #fff;
    }
.btExecute {
    background-image: linear-gradient(to bottom, #2191CC, #005C95);
    color: #fff;
    border: 1px solid #005C95;
}
    .btExecute:hover {
        background-image: linear-gradient(to bottom, #005C95, #2191CC);
        border: 1px solid #005C95;
        color: #002B55;
        text-shadow: 1px 1px 10px #ccc;
    }
.btVoltar {    
    padding: 5px 24px;
    color: #555;
    text-shadow: 2px 2px 10px #757575;
    border: solid #888 1px;
    background-image: url(../images/iconVoltarHoverBtn.png);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: left center;
}
    .btVoltar:hover {
        color: #000;
        text-shadow: 2px 2px 10px #aaa;
        border: solid #333 1px;
        background-image: url(../images/iconVoltarBtn.png);
    }
.btnImprimir { 
    padding: 5px 10px 5px 30px;   
    color: #000;
    text-shadow: 2px 2px 10px #757575;    
    border: solid #333 1px;
    background-image: url(../images/iconPrinterBtn.png);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 0.1cm center;
}
    .btnImprimir:hover {        
        color: #555;
        text-shadow: 2px 2px 10px #888;
        border: solid #888 1px;
        background-image: url(../images/iconPrinterBtnDesabled.png);
    }
.btnGrafite {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    padding: 4px 15px;
    background: #222;
    background-image: linear-gradient(to bottom, #555, #222);
    border: solid #aaa 1px;
    text-shadow: 2px 2px 3px #444;
    color: #fff;
}
    .btnGrafite:hover {
        background: #555;
        background-image: linear-gradient(to bottom, #222, #555);
        text-shadow: 1px 1px 2px #888;
        color: #bbb;
    }
.btnAlerta {
    background-image: linear-gradient(to bottom, #eee, #ccc);
    border: 1px solid #888;
    text-shadow: 2px 2px 10px #757575;
    color: #c00;
    padding: 4px 15px;
}
    .btnAlerta:hover {
        background: #800000;
   
        border: 1px solid #888;
        text-shadow: 1px 1px 2px #888;
        color: #ddd;
    }
.btnDesabilitado {
    background: #cdcdcd;
    border: solid #aaa 1px;
    text-shadow: 1px 1px 0px #efefef;
    color: #555;
    cursor: not-allowed;
}
/*==> Botoes: Tipo Div */
.btnDevDuv {
    border: 1px solid #888;
    border-top-left-radius:     4px;
    border-top-right-radius:    4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius:  4px;
    text-shadow: 2px 2px 10px #757575;
    color: #B22222;
    padding: 2px 14px 2px 14px;
    background: url('../images/devedoresDuvidosos.png') no-repeat top left;
    background-size: 24px 24px;
    height: 28px;
}
    .btnDevDuv:hover {
        color: #FF4500;
        border: 1px solid #aaa;
        text-shadow: 1px 1px 2px #fff;
        background: url('../images/devedoresDuvidosos.png') no-repeat top left;
        background-size: 24px 24px;
    }
.btnDivSelecionado, .btnDiv, .btnDivDesable {
    padding: 5px 15px;
    text-decoration: none;
    font-weight: bold;
}
.btnDivSelecionado {
    background-color: #00476b;
    border: 1px solid #00476b;
    font-family: Arial;
    font-size: 12px;
    color: #fff;
    cursor: default;
}
.btnDiv {
    background-color: #c1c8de;
    border: 1px solid #a6b2db;
    font-family: Arial;
    font-size: 12px;
    color: #005c8a;
    cursor: pointer;
}
    .btnDiv:hover {
        background-color: #00476b;
        border: 1px solid #00476b;
        color: #fff;
    }
.btnDivPadrao {
    background-image: linear-gradient(to bottom, #eee, #ccc);
    border: 1px solid #888;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    text-shadow: 2px 2px 10px #757575;
    color: #383838;
    font-size: 1.1em;
    padding: 4px 5px;
    cursor: pointer;
}
    .btnDivPadrao:hover {
        background-image: linear-gradient(to bottom, #aaa, #eee);
        color: #484848;
        border: 1px solid #777;
        text-shadow: 1px 1px 2px #fff;
    }

.btnDivDesable {
    background-color: #EFEFEF;
    border: 1px solid #CCC;
    font-family: Arial;
    font-size: 12px;
    color: #ccc;
    cursor: not-allowed;
}
.divBtn {
    display: inline-block;
    padding: 3px 8px 3px 8px;
    -webkit-border-radius: 3;
    -moz-border-radius: 3;
    border-radius: 3px;
    font-size: 0.9em;
    font-weight: normal;
    font-style: normal;
    background-image: -webkit-linear-gradient(top, #eee, #ccc);
    background-image: -moz-linear-gradient(top, #eee, #ccc);
    background-image: -o-linear-gradient(top, #eee, #ccc);
    background-image: linear-gradient(to bottom, #eee, #ccc);
    border: 1px solid #888;
    color: #383838;
    cursor: pointer;
}
    .divBtn:hover {
        background-image: -webkit-linear-gradient(top, #aaa, #eee);
        background-image: -moz-linear-gradient(top, #aaa, #eee);
        background-image: -o-linear-gradient(top, #aaa, #eee);
        background-image: linear-gradient(to bottom, #aaa, #eee);
        color: #484848;
        border: 1px solid #999;
        text-shadow: 1px 1px 2px #666;
    }
    .divBtn div {
        display: inline-block;
        font-weight: bolder;
        font-size: 1em;
        padding-right: 3px;
    }
        .divBtn div.voltar:before {
            background-image: url(../images/iconBack.png);
            background-size: 0.9em;
            background-repeat: no-repeat;
            background-position: left center;
            content: '\2001'; /*Simula "vazio"*/
        }
        .divBtn div.plus:before {
            padding: 0px 3px;
            content: '\002B';
        }
        .divBtn div.lista:before {
            padding: 0px 3px;
            content: '\2263';
        }
        .divBtn div.eye:before {
            padding: 0px 2px;
            background-image: url(../images/iconEye.png);
            background-size: 1em;
            background-repeat: no-repeat;
            background-position: left center;
            content: '\2001'; /*Simula "vazio"*/
        }
        .divBtn div.print:before {
            padding: 0px 2px;
            background-image: url(../images/iconPrinter.png);
            background-size: 1em;
            background-repeat: no-repeat;
            background-position: left center;
            content: '\2001'; /*Simula "vazio"*/
        }
        .divBtn div.busca:before {
            padding: 0px 2px;
            background-image: url(../images/iconLupa.png);
            background-size: 1em;
            background-repeat: no-repeat;
            background-position: left center;
            content: '\2001'; /*Simula "vazio"*/
        }
        .divBtn div.clean:before {
            padding: 0px 2px;
            background-image: url(../images/iconClean.png);
            background-size: 1em;
            background-repeat: no-repeat;
            background-position: left center;
            content: '\2001'; /*Simula "vazio"*/
        }
        .divBtn div.squareChecked:before {
            padding: 0px 2px;
            background-image: url(../images/iconSquareChecked.png);
            background-size: 1em;
            background-repeat: no-repeat;
            background-position: left center;
            content: '\2001'; /*Simula "vazio"*/
        }
        .divBtn div.SquareUnchecked:before {
            padding: 0px 2px;
            background-image: url(../images/iconSquareUnchecked.png);
            background-size: 1em;
            background-repeat: no-repeat;
            background-position: left center;
            content: '\2001'; /*Simula "vazio"*/
        }
        .divBtn div.check:before {
            content: '\2713';
        }
        .divBtn div.check:hover {
            color: #009933;
        }

.divBtn.bt-primary {
    padding: 6px 8px;
    background-image: linear-gradient(to bottom, #2191CC, #003f66);
    color: #fff;
    border: 1px solid #003f66;
}
    .divBtn.bt-primary:hover {
        background-image: linear-gradient(to bottom, #003f66, ##2191CC);
        border: 1px solid #003f66;
        color: #fff;
        text-shadow: 1px 1px 10px #ccc;
    }
/*----- Input ------*/
.timeSessionHidden {
    border: 1px solid #87b7b7;
    text-align: center;
    background-color: transparent;
    font-weight: normal;
    color: #87b7b7;
    font-size: 14px;
    width: 145px;
}
.clearInput {
    font-size: 11px;
    background-color: transparent;
    border-style: none;
}
.inputgrid {
    font-size: 9px;
    width: 58px;
}
.inputHidden {
    background-color: transparent;
    border-color: transparent;
}
.bold {
    font-weight: bold;
}
.fontLabel, .fontLabelM, .fontLabelGrande, .fontLabel2, .fontLabelNormal, .fontLabelNormal2, .fontLabelNormal3, .fontLabelvermelha, .fontCampos, .fontCamposM, .fontCamposMG, .fontCamposGrande, .azul {
    font-weight: bold;    
}
.fontLabel { font-size: 11px; color: #DE9A18;}
.fontLabel2 { font-size: 11px; color: #DE9A18;}
.fontLabelNormal2 { font-size: 11px; color: #DE9A18;}
.fontLabelNormal3 { font-size: 11px; color: #DE9A18;}
.fontLabelNormal { font-size: 12px; color: #DE9A18;}
.fontLabelM { font-size: 16px; color: #DE9A18;}
.fontLabelGrande { font-size: 18px; color: #DE9A18;}
.fontLabelvermelha { font-size: 11px; color: #ff6600;}
.fontCampos { font-size: 11px; color: #005D6B;}
.azul { font-size: 12px; color: #0000FF;}
.forestGreen { color: #228B22;}
.red3 { color: #CD0000;}
.azulLight { color: #0052cc;}

.fontCamposM { font-size: 16px; color: #005D6B;}
.fontCamposMG { font-size: 22px; color: #005D6B;}
.fontCamposGrande { font-size: 18px; color: #005D6B;}

.fontCamposNormal, .fontCamposNormalBold, .fontCamposNormal-10, .fontCamposNormal-14, .fontCamposBold {
    color: #005D6B;
}
.fontCamposNormal { font-weight: normal; font-size: 12px;}
.fontCamposNormalBold { font-weight: bold; font-size: 10px;}
.fontCamposNormal-10 { font-weight: normal; font-size: 10px;}
.fontCamposNormal-14 { font-weight: normal; font-size: 14px;}
.fontCamposBold { font-weight: bold; font-size: 12px;}

.fontExtrato, .fontExtrato-10 {
    font-weight: bold;
    color: #858383;
}
.fontExtrato { font-size: 12px;}
.fontExtrato-10 { font-size: 10px;}
.fontExtrato-11 { font-size: 11px; font-weight: normal;}

.fontCamposNormalV, .fontGrandeVermelha {
    color: red;
}
.fontCamposNormalV { font-weight: normal; font-size: 12px;}
.fontGrandeVermelha { font-weight: bold; font-size: 18px;}

.fontLink, .fontLink2, .fontAjuda, .fontCamposRed, .fontTextComprido, .fontTextMedio, .fontTextMedioBENEF, .FonteExtratos, .FonteExtratosBlack, .FonteExtratosBlue, .fontGrid, .lowText {
    /*font-family: "ARIAL", tahoma, Helvetica, sans-serif;*/
}
.fontLink {
    font-weight: bold;
    font-size: 11px;
    color: #DE9A18;
}
.fontLink2 {
    font-weight: bold;
    font-size: 11px;
    color: #00697B;
}
.fontAjuda {
    font-weight: normal;
    font-size: 10px;
    color: #00697B;
}
.fontCamposRed {
    font-weight: bold;
    font-size: 1em;
    color: #CC0000;
}
.fontTextComprido, .fontTextMedio {
    font-size: 11px;
    font-weight: normal;
    color: #606060;
    padding-left: 7px;
    text-align: justify;
}
.fontTextComprido { width: 400px;}
.fontTextMedio { width: 230px;}

.fontTextMedioBENEF {
    font-size: 11px;
    font-weight: normal;
    color: #606060;
}
.FonteExtratos {
    font-size: 11px;
    color: #606060;
    padding-left: 5px;
}
.FonteExtratosBlack {
    font-size: 11px;
    color: #222;
    padding-left: 5px;
}
.FonteExtratosBlue {
    font-size: 11px;
    color: #0000CD;
    padding-left: 5px;
}
.FonteExtratosRed {
    font-size: 11px;
    color: #990000;
    padding-left: 5px;
}
.fontGrid {
    font-weight: bold;
    font-size: 12px;
    color: #005D6B;
}
.lowText {
    font-size: 12px;
    color: #00697B;
    text-decoration: none;
}
.BorderCel {
    border: 1px solid #D4D2D2;
    font-weight: bold;
    font-size: 12px;
    color: #DE9A18;
}
.textareaTitulo {
    font-size: 11px;
    font-weight: bold;
    color: #606060;
    padding-left: 7px;
    text-align: justify;
}
.textarea {
    font-size: 11px;
    font-weight: normal;
    color: #606060;
    padding-left: 7px;
}
.comboTextArea {
    font-size: 11px;
    font-weight: normal;
    color: #606060;
    height: 18px;
    padding-left: 4px;
    /*text-align: justify;*/
}
.areaComboPaginacao {
    padding-top: 4px;
    font-size: 0.75em;
    color: #444;
}
    .areaComboPaginacao select {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
        height: 20px;
        font-size: 0.9em;
        color: #444;
        background-color: #ddd;
        border: 1px solid #888;
    }
.comboPadrao {
    font-size: 1em;
    font-weight: normal;
    color: #333;
    padding-left: 2px;
    border: 1px solid #ccc;
    border-radius: 3px;
}
.textGrid {
    font-size: 11px;
    font-weight: normal;
    color: #555;
}
.itemooh {
    /* Criada para o jQuery enxergar os itens ooh do cadastro de NFF sem mudar name ou id */
    font-size: 11px;
    font-weight: normal;
    color: #606060;
    padding-left: 7px;
    text-align: justify;
}
.aguarde {
    font-weight: bold;
    padding: 3px 0 3px 0;
    text-align: center;
    color: #000;
}
/* Alterado em 30/10/09 por Rodrigo*/
.dia {
    font-family: helvetica, arial;
    font-size: 8pt;
    color: #FFFFFF;
}
.data {
    font-family: helvetica, arial;
    font-size: 8pt;
    text-decoration: none;
    color: #000000;
}
.mes {
    font-family: helvetica, arial;
    font-size: 8pt;
}
.Cabecalho_Calendario {
    font-family: helvetica, arial;
    font-size: 10pt;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

.td {
    font-weight: bold;
    font-size: 12px;
    color: #2D5986;
}
.div_mensagens {
    font-size: 10pt;
    text-align: center;
    color: #d91818;
    position: absolute;
    text-decoration: underline;
    top: 30%;
    left: 35%;
    width: 400px;
    height: 100px;
    position: fixed;
    background-color: #FFFFFF;
    border: solid;
    border-color: #d91818;
    overflow: auto;
}
.mostraDiv_02 {
    font-size: 10pt;
    text-align: center;
    color: #d91818;
    position: absolute;
    top: 30%;
    left: 25%;
    width: 600px;
    height: 200px;
    position: fixed;
    background-color: #FFFFFF;
    border: solid;
    border-color: #d4cfcf;
    overflow: auto;
}

.divComentarioPrevisao {
    position: fixed;
    font-size: 10pt;
    text-align: center;
    color: #d91818;
    top: 30%;
    left: 35%;
    background-color: #FFFFFF;
    border: 3px solid #888;
    overflow: auto;
}
.divGenerica {
    position: fixed;
    background-color: #FFFFFF;
    border: 3px solid #888;
    overflow: auto;
}
.divBallon {
    position: absolute;
    background-color: #CCC;
    border: 1px solid #777;
    padding: 3px;
    border-radius: 3px 3px 3px 3px;
    overflow: auto;
    display: none;
}
    .divBallon .tableInfoBallon {
        background-color: #EFEFEF;
        border-collapse:collapse;
    }
    .divBallon .tableInfoBallon td {
        vertical-align: top;
        border-right: none;
    }
    .divBallon .dadosInfo {
        padding: 5px;
        background-color: #EFEFEF;
    }
        .divBallon .dadosInfo div {
            padding: 2px;
        }
        .divBallon .dadosInfo div.titulo {
            font-weight: normal;
            font-size: 1.2em;
            text-align: left;
            border-bottom: 1px solid #777;
        }
        
.divAlertas {
    position: fixed;
    padding: 0px; 
    border: 1px solid #bbb;
    border-top-color:#bbb;
    border-bottom-color:#bbb;
    border-radius: 5px;
    z-index: 9999;
}
/*========= Grid: HeadListagem ==========*/
.HeadListagem {
    background-color: #C1CDCD;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    color: #005D6B;
}
    .HeadListagem td, .HeadListagem th {
        padding: 3px;
    }
    .HeadListagem thead tr {
        background-color: #C1CDCD;
        text-align: center;
        font-weight: bold;
        font-size: 12px;
        color: #005D6B;      
    }
    .HeadListagem thead td {
        border: 1px solid #005D6B;
    }
    .HeadListagem tbody tr:nth-child(odd) {
        background-color: #E6E6E6;
    }
    .HeadListagem tbody tr:nth-child(even) {
        background-color: #F4F4F4;
    }
    .HeadListagem tbody th {
        background-color: #c1cdcd;
        border-bottom: 1px solid #005D6B;
    }
    .HeadListagem tbody td {
        color: #00496B;
    }
    .HeadListagem tbody .alt td {
        background: #E0EEEE;
        color: #00496B;
    }
/*========= Grid ==========*/
.datagrid {
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    border: 1px solid #005d6b;
    border-spacing: 0px 0px;
    border-right: none;
    font-size: 12px;
    font-weight: normal;
}
    .datagrid a:link { color: #005d6b;}
    .datagrid a:visited { color: #005d6b;}
    .datagrid a:hover { color: #005d6b; font-weight: bold; text-decoration: none;}
    .datagrid a:active { color: #005d6b;}

    .datagrid td, .datagrid th {
        padding: 5px;
    }
    .datagrid td.left, .datagrid th.left {
        text-align: left;
    }
    .datagrid td.right, .datagrid th.right {
        text-align: right;
    }
    /*====== thead ======*/
    .datagrid thead th {
        background: #c1cdcd;
        background-image: linear-gradient(to bottom, #c1cdcd, #eee);
        color: #005d6b;        
        font-weight: bold;
        border: 1px solid #005d6b;
    }
    .datagrid thead th {
        border-top: none;
        border-left: none;
    }
    /*====== tbody ======*/
    .datagrid tbody {
        color: #00496B;
    }
        .datagrid tbody tr th {
            background: #c1cdcd;
            background-image: linear-gradient(to bottom, #c1cdcd, #eee);
            color: #005d6b;
            font-size: 12px;
            font-weight: bold;
            border-top: 1px solid #005d6b;
            border-right: 1px solid #005d6b;
            border-bottom: 1px solid #005d6b;
        }
        .datagrid tbody tr:last-child th, .datagrid tbody tr:last-child td {
            border-bottom: none;
        }
        .datagrid tbody tr:nth-child(odd) {
            background-color: #FCFCFC;
        }
        .datagrid tbody tr:nth-child(even) {
            background-color: #E0EEEE;
        }
        .datagrid tbody.hoverLine tr:hover {
            background-color: #efef99;
            cursor: pointer;
        }
        .datagrid tbody td {
            border-right: 1px solid #2F4F4F;
            border-bottom: 1px solid #ccc;
        }
            .datagrid tbody td .inputClean {
                background-color: transparent;
                border-style: none;
                color: #00496B;
                font-size: 12px;
            }
        .datagrid tbody .alt td {
            background: #E0EEEE;
            color: #00496B;
        }
        .datagrid tbody .alt-yellow td {
            background: #FFF000;
            color: #00496B;
        }
        .datagrid tbody .alt-ltGolden td {
            background: #FAFAD2;
            color: #00496B;
        }
        .datagrid tbody .alt-coral td {
            background: #FFD39B;
            color: #00496B;
        }
        .datagrid tbody .alt-red td {
            background: #FFA54F;
            color: #00496B;
        }
        .datagrid tbody .alt-cancelada td {
            background: #ffe6e6;
            color: #C00;
        }
        .datagrid tbody .alt-informal td {
            background: #99ccff;
        }
        .datagrid tbody td:first-child {
            border-left: none;
        }
        .datagrid tbody tr:last-child td {
            border-bottom: none;
        }
    /*====== tfoot ======*/
    .datagrid tfoot th, .datagrid tfoot td {
        background: #c1cdcd;
        background-image: linear-gradient(to bottom, #c1cdcd, #eee);
        color: #005d6b;        
        font-weight: bold;
        border-top: 1px solid #005d6b;
        border-right: 1px solid #005d6b;
        text-align: center;
    }
    .datagrid tfoot tr th, .datagrid tfoot tr td {
        padding: 2px;
    }
/*========= Grid Interna ==========*/
.gridInterna {
    margin: 0px auto;
    background-color: #fff;
    border: 1px solid #555;
    border-spacing: 0px 0px;
    border-right: none;
}
.gridInterna td, .gridInterna th {
    padding: 5px 5px;
}
    .gridInterna thead th {
        background: #EFEFEF;
        background-image: linear-gradient(to bottom, #fff, #ccc);
        color: #555;
        font-size: 12px;
        font-weight: bold;
        border: 1px solid #999;
    }
    .gridInterna thead th {
        border-top: none;
        border-left: none;
    }
    .gridInterna tbody td {
        color: #555;
        font-size: 11px;
        font-weight: normal;
        border-right: 1px solid #999;
    }
    .gridInterna tbody .alt td {
        background: #EFEFEF;
        color: #555;
    }
    .gridInterna tbody td:first-child {
        border-left: none;
    }
    .gridInterna tbody tr:last-child td {
        border-bottom: none;
    }
    .gridInterna tbody tr th {
        background: #EFEFEF;
        background-image: linear-gradient(to bottom, #fff, #ccc);
        color: #555;
        font-size: 12px;
        font-weight: bold;
        border-top: 1px solid #999;
        border-right: 1px solid #999;
        border-bottom: 1px solid #999;
    }
    .gridInterna tbody.hoverLine tr:hover {
        background-color: #efef99;
        cursor: pointer;
    }
    .gridInterna tfoot td div {
        border-top: 1px solid #999;
        background: #EFEFEF;
        border-right: 1px solid #999;
    }
    .gridInterna tfoot td {
        padding: 0;
        font-size: 11px;
    }
        .gridInterna tfoot td div {
            padding: 2px;
        }
        .gridInterna tfoot td ul {
            margin: 0;
            padding: 0;
            list-style: none;
            text-align: center;
        }
    .gridInterna tfoot th {
        background: #EFEFEF;
        background-image: linear-gradient(to bottom, #fff, #ccc);
        color: #555;
        font-size: 12px;
        font-weight: bold;
        border: 1px solid #999;
        border-top: none;
        border-left: none;
    }

/*========= Grid Interna ==========*/
.gridPadrao {
    margin-left: auto;
    margin-right: auto; 
    background-color: #fff;
    border: 1px solid #888;
    border-spacing: 0px 0px;
    border-right: none;
}
    .gridPadrao a:link { color: #333;}
    .gridPadrao a:visited { color: #363636;}
    .gridPadrao a:hover { color: #000; font-weight: bold; text-decoration: none;}
    .gridPadrao a:active { color: #363636;}
    .gridPadrao th.left, td.left {
        text-align: left;
    }
    .gridPadrao th.center, td.center {
        text-align: center;
    }
    .gridPadrao th.right, td.right {
        text-align: right;
    }
    /*====== thead ======*/
    .gridPadrao thead th {
        background: #BEBEBE;
        background-image: linear-gradient(to bottom, #BEBEBE, #E8E8E8);
        color: #363636;
        font-size: 12px;
        font-weight: bold;
        border: 1px solid #777;
        border-left: none;
    }
    .gridPadrao thead th {
        border-top: none;
        border-left: none;
        padding: 5px;
    }
        .gridPadrao thead th.linhaDestaque {
            background: #c1cdcd;
            background-image: linear-gradient(to bottom, #b8c6c6, #d5dddd);
            font-size: 1em;
            font-weight: bold;
        }
    /*====== tbody ======*/
    .gridPadrao tbody.hoverLine tr:hover {
        background-color: #efef99;
        cursor: pointer;
    }
    .gridPadrao tbody td {
        color: #242424;
        border-right: 1px solid #777;
        border-bottom: 1px solid #e0e0e0;
        font-size: 11px;
        font-weight: normal;
        padding: 3px 5px;
    }
    .gridPadrao tbody tr:last-child td {
        border-bottom: 0;
    }
    .gridPadrao tbody .blueColor {
         color: #0900dd;
    }
    .gridPadrao tbody .redColor {
         color: #FF0000;
    }
    .gridPadrao tbody .alt-yellow td {
        background: #FFF000;
    }
    .gridPadrao tbody .alt-ltGolden td {
        background: #FAFAD2;
    }
    .gridPadrao tbody .alt-coral td {
        background: #FFD39B;
    }
    .gridPadrao tbody .alt-red td {
        background: #FFA54F;
    }
    .gridPadrao tbody .alt-informal td {
        background: #99ccff;
    }
    .gridPadrao tbody tr.naoFaturavel > td {
        color: #c00;
    }
    .gridPadrao tbody tr:nth-child(odd) {
        background-color: #FEFEFE;
    }
    .gridPadrao tbody tr:nth-child(even) {
        background-color: #e6e6e6;
    }
    .gridPadrao tbody tr.rowSelected {
        background-color: #0066cc;
    }
        .gridPadrao tbody tr.rowSelected td {
            color: #fff;
        }
    .gridPadrao tbody tr th {
        background: #BEBEBE;
        background-image: linear-gradient(to bottom, #BEBEBE, #E8E8E8);
        color: #363636;
        font-size: 12px;
        font-weight: bold;
        border: 1px solid #777;
        border-left: none;
    }
    .gridPadrao tbody tr th.destaqueInterno {
        border-top: none;
    }
    .gridPadrao tbody tr th.destaqueInternoUltima {
        border-top: none;
        border-bottom: none;
    }
    /*====== tfoot ======*/
    .gridPadrao tfoot td {
        padding: 0;
        font-size: 11px;
    }
        .gridPadrao tfoot td div {
            padding: 2px;
        }
        .gridPadrao tfoot td ul {
            margin: 0;
            padding: 0;
            list-style: none;
            text-align: center;
        }
    .gridPadrao tfoot th {
        background: #BEBEBE;
        background-image: linear-gradient(to bottom, #E8E8E8, #BEBEBE);
        color: #363636;
        font-size: 12px;
        font-weight: bold;
        border: 1px solid #777;
        border-bottom: none;
        border-left: none;
    }
    .gridPadrao table.tableGridInterna {
        border: 1px solid #666;
        border-collapse: collapse;
    }
    .gridPadrao table.tableGridInterna td {
        border: none;
    }

/*========= Table Formulario ==========*/
.tableFormulario {
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #888;
    border-radius: 5px;
    border-spacing: 4px 2px;
    min-width: 240px;
    background-image: linear-gradient(to bottom, #FFFAFA, #ddd);    
}
    /*==== thead ====*/
    .tableFormulario thead td {
        text-align: center;
        padding: 2px;
        border-bottom: 1px solid #002B55;
    }
    /*=== Titulo Formulário ===*/
    .tableFormulario thead td.nomeForm {
        text-align: center;
        padding: 2px;
        font-size: 0.9em;
        color: #002C51;
        text-shadow: 0.08em 0.08em 0.1em #ccc;
        font-weight: bold;
    }
    .tableFormulario thead td div {
        display: inline-block;
    }
        .tableFormulario thead td div.iconHelpHead {
            float: left;
        }
        .tableFormulario thead td div.tituloHead {
            position: relative;
            vertical-align: top;
            padding-top: 5px;
            left: -15px;
        }
    /*=========================*/
    .tableFormulario td, .tableFormulario th {
        padding: 2px;
        vertical-align: top;
        text-align: left;
    }
    .tableFormulario td.center, .tableFormulario th.center {
        text-align: center;
    }
    .tableFormulario td.right, .tableFormulario th.right {
        text-align: right;
    }
    /*==== tbody ====*/
    .tableFormulario tbody td {
        background-color: transparent;
        color: #002C51;
        font-size: 12px;
        font-weight: normal;
        vertical-align: middle;
    }
    .tableFormulario tbody tr.bold td {
        font-weight: bold;
    }
    .tableFormulario tbody input[type=text] {
        padding: 4px;
        border: 1px solid #ccc;
        border-radius: 3px;
        box-shadow: 0 0 5px #e8e9eb inset;
        height: 13px;
        outline: 0;
    }
        .tableFormulario tbody input[type=text]:focus {
            border: 1px solid #b9d4e9;
            border-top-color: #b6d5ea;
            border-bottom-color: #b8d4ea;
            box-shadow: 0 0 5px #b9d4e9;
        }
    .tableFormulario tbody select {
        color: #222;
        border: 1px solid #d5d9da;
        border-radius: 3px;
        padding: 2px 3px 2px 5px;
        box-shadow: 0 0 5px #e8e9eb inset;
        font-size: 12px;
        height: 24px;
        outline: 0;
    }
        .tableFormulario tbody select option {
            padding: 2px 3px;
            border-radius: 2px;
            border-bottom: 1px solid #efefef;
        }
        .tableFormulario tbody select select {
            background: transparent;
            padding: 5px;
            line-height: 1;
            border: 0;
            border-radius: 0;
            height: 28px;
            -webkit-appearance: none;
            color: #000;
        }
    .tableFormulario tbody a {
        color: #002B55;
    }
        .tableFormulario tbody a:hover {
            color: #2191CC;
        }
    .tableFormulario tbody tr:first-child th, .tableFormulario tbody tr:first-child td {        
        padding-top: 3px;
    }
    .tableFormulario tbody tr:last-child th, .tableFormulario tbody tr:last-child td {        
        padding-bottom: 10px;
    }
    /*==== tfoot ====*/
    .tableFormulario tfoot td {
        text-align: center;
        padding: 5px 0px;
    }
    .tableFormulario tfoot th:first-child, .tableFormulario tfoot td:first-child{
        border-top: 1px solid #ccc;
    }
    .tableFormulario tfoot th {
        text-align: center;
        padding: 5px 0px;
    }
    .tableFormulario .btnPadraoTable {
        background-image: linear-gradient(to bottom, #eee, #ccc);
        border: 1px solid #888;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
        text-shadow: 2px 2px 10px #757575;
        color: #383838;
        font-size: 12px;
        padding: 4px 20px;
        height: 24px;
        cursor: pointer;
    }
        .tableFormulario .btnPadraoTable:hover {
            background-image: linear-gradient(to bottom, #aaa, #eee);
            color: #484848;
            border: 1px solid #777;
            text-shadow: 1px 1px 2px #fff;
        }
    .tableFormulario .btnDesabilitado {
        background-image: linear-gradient(to bottom, #aaa, #ccc);
        border: 1px solid #888;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
        text-shadow: 2px 2px 10px #757575;
        color: #383838;
        font-size: 12px;
        padding: 4px 20px;
        cursor: not-allowed;
        height: 24px;
    }
    .tableFormulario .btnPadrao {
        background-image: linear-gradient(to bottom, #eee, #ccc);
        border: 1px solid #888;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
        text-shadow: 2px 2px 10px #757575;
        color: #383838;
        font-size: 12px;
        padding: 4px 20px;
        cursor: pointer;
        height: 24px;
    }
        .tableFormulario .btnPadrao:hover {
            background-image: linear-gradient(to bottom, #aaa, #eee);
            color: #484848;
            border: 1px solid #777;
            text-shadow: 1px 1px 2px #fff;
        }
    .tableFormulario .btExecuteTbForm {
        background-image: linear-gradient(to bottom, #2191CC, #005C95);
        border-radius: 5px;
        font-family: Arial;
        color: #fff;
        font-size: 12px;
        padding: 5px 20px;
        border: 1px solid #005C95;
        cursor: pointer;
        height: 24px;
    }
        .tableFormulario .btExecuteTbForm:hover {
            background-image: linear-gradient(to bottom, #005C95, #2191CC);
            border: 1px solid #005C95;
            color: #002B55;
        }

.tbForm-bg-alternativo {
    background-image: linear-gradient(to bottom, #d9e6f2, #ecf2f9, #d9e6f2);
}

.tbForm-bg-fatura {
    background-image: linear-gradient(to bottom, #ffdf80, #ffecb3, #ffdf80);
}
/*========= Collapse ==========*/
.headerCollapse {
    /*Defina a largura na página*/
    background-image: linear-gradient(to bottom, #FFFAFA, #ddd);
    border: 1px solid #888;
    text-align: left;
    outline: none;
    color: #444;
    font-weight: normal;
    cursor: pointer;
}
    .headerCollapse:hover {
        background-image: linear-gradient(to bottom, #ddd, #FFFAFA);
        text-shadow: 1px 1px 2px #bbb;
    }
    .headerCollapse .titulo, .headerCollapse .icone {
        display: inline-block;
        padding: 10px 15px; 
    }
    .headerCollapse .titulo {
        font-size: 0.95em;
    }
    .headerCollapse .icone {
        float: right;
        vertical-align: top;
    }
        .headerCollapse .icone img {
            width: 16px;
            height: auto;
        }
.contentCollapse {
    background-color: transparent;
}
    .contentCollapse .textAreaCollapse {
        padding: 5px 5px;
        border: 1px solid #999;
        border-top: none;
    }
/*========= Div Accordion ==========*/
div.accordion {
    padding: 6px 15px;  
    height: 24px;          
    text-align: left;
    outline: none;
    background-color: #999;
    background-image: linear-gradient(to bottom, #ededed, #ddd);
    color: #333;
    border: 1px solid #999;            
    font-size: 1.3em;
    cursor: pointer;
}
    div.accordion.active, div.accordion:hover {
        background-color: #bbb;
        background-image: linear-gradient(to bottom, #ddd, #ededed);
        color: #000;
        text-shadow: 1px 1px 2px #bbb;
    }
    div.accordion:after {
        content: '\002B';
        color: #000;
        font-weight: bold;
        float: right;
        margin-left: 5px;
    }
    div.accordion.active:after {
        content: "\2212";
    }
div.accordionPanel {
    padding: 0px;
    background-color: transparent;
    border: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}
/*========= Tabulação (abas) ==========*/
.tabs-container {
    position: relative;
    height: 300px;
    width: 100%;
    margin: 0 auto;
}
    .tabs-container .conteudo-tab{
        margin: 2px 0px 0px 0px;
        padding: 5px 0px;
        border-top: 1px solid #aaa;                       
    }
    .tabs-container:after {
        content: '.';
        display: block;
        clear: both;
        height: 0;
        font-size: 0;
        line-height: 0;
        visibility: hidden;
    }
input.tabs {
    display: none;
}
    input.tabs + label {
        line-height: 40px;
        padding: 0 20px;
        float: left;
        background: #444;
        color: #fff;
        cursor: pointer;
        transition: background ease-in-out .3s;
        border: 1px solid #333;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }
    input.tabs:checked + label {
        color: #000;
        background: #eee;
    }
    input.tabs + label + div {
        width: 100%;
        opacity: 0;
        position: absolute;
        background-color: transparent;
        top: 40px;
        left: 0;
        height: 200px;
        padding: 10px;
        z-index: -1;
        transition: opacity ease-in-out .3s;
    }
    input.tabs:checked + label + div {
        opacity: 1;
        z-index: 1000;
    }

/*==== Tabela Nota Fiscal ====*/
#tableNF {
    margin-left: auto;
    margin-right: auto;
    color: #000;
    width: 600px;
    border: 2px solid #000;
    border-collapse: collapse;
}
    #tableNF td {
        font-size: 11px;
    }
    #tableNF .topoPrefeitura {
        font-size: 15px;
        text-align: center;
    }
    #tableNF .topoPrefeitura {
        text-align: center;
    }
    #tableNF .tituloPref, #tableNF .titulo {
        text-align: center;
        font-weight: bold;
    }
    #tableNF .tituloPref {
        font-size: 18px;
    }
    #tableNF .titulo {
        font-size: 12px;
    }
    #tableNF .espacotopo {
        padding: 0px 0px 5px 0px;
    }
    #tableNF .valores {
        text-align: right;
        padding-right: 3px;
        font-weight: bold;
    }
    #tableNF .colunaValores {
        float: left;
        width: 98px;
    }
    #tableNF .tituloValores {
        font-size: .8em;
        padding-left: 3px;
    }
    #tableNF .borderLeft_1 {
        border-left: 1px solid #000;
    }
    #tableNF .borderLeft_2 {
        border-left: 2px solid #000;
    }
    #tableNF .borderTop_1 {
        border-top: 1px solid #000;
    }
    #tableNF .borderTop_2 {
        border-top: 2px solid #000;
    }
    #tableNF .info {
        font-size: 9px;
        padding: 0px 3px;
    }
    #tableNF .descricaoNF {
        width: 18.5cm;
        min-height: 280px;
        font-size: 1em;
        border: none;
        /*font-family: prototype, tahoma, Helvetica, sans-serif;*/
        padding: 0px 4px;
        text-align: left;
    }
/*=============================*/

#legendaBVHI {
    position: fixed;
    float: left;
    top: 150px;
    left: 5px;
}
    #legendaBVHI .tableLegendaBVHI {
        border: 1px solid #bbb;
        background-color: #EFEFEF
    }
        #legendaBVHI .tableBVHI div {
            display: inline-block;
        }
    #legendaBVHI .divInterna {        
        color: #333;
        width: 150px;
        text-align: right;
    }
    #legendaBVHI .colorArea {
        width: 20px;
        height: 20px;
        border: 1px solid #ccc;
    }

.linksPaginacao div {        
    text-align: center;
    font-size: 1em;
}
    .linksPaginacao div.linkPag {
        display: inline-block;
        padding: 5px 8px;
        margin: 1px;
        border-radius: 3px;
        background: #006f7f;
        background-image: linear-gradient(to bottom, #006f7f, #008B8B);
        border: 1px solid #006f7f;
        color: #004646;
        cursor: pointer;
    }
    .linksPaginacao div.linkPag:hover {
        color: #fff;
        border: 1px solid #00557F;
        border-color: #00557F;
        background: #00b5b5;
    }
    .linksPaginacao div.linkPag.active, .linksPaginacao div.linkPag.active:hover {
        color: #fff;
        border: 1px solid #00557F;
        border-color: #004646;
        background: #00b5b5;
        font-weight: bold;
        cursor: default;
    }
/*========= ABA TABULACAO ==========*/
#abaControl {
    width: 100%;
}
    #abaControl .headAba {
        background-color: transparent;
        overflow: hidden;
        padding: 0px;
        margin: 0px;
        font-size: 1em;
    }
    #abaControl #contentAba {
        border: 1px solid #888;
        border-top-right-radius: 3px;        
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
        overflow: hidden;
        height: 100%;
    }
    #abaControl .abas {
        display: inline;
    }
        #abaControl .abas div {
            min-width: 110px;
            float: left;
        }
    #abaControl .aba, .abaSelected {
        padding: 8px 5px;
        -webkit-border-radius: 5px 5px 0px 0px;
        -moz-border-radius: 5px 5px 0px 0px;
        border-radius: 5px 5px 0px 0px;
        text-align: center;
        cursor: pointer;
    }
    #abaControl .aba {
        background-image: linear-gradient(to bottom, #efefef, #ccc);
        color: #444;
        border: 1px solid #ccc;
        border-bottom: none;
    }
    #abaControl .aba:hover {
        background-image: linear-gradient(to bottom, #333, #aaa);
        color: #eee;
        border-top: 1px solid #888;
        border-left: 1px solid #888;
        border-right: 1px solid #888;
        border-bottom: none;
    }
    #abaControl .abaSelected {
        background: #131313;
        background-image: linear-gradient(to bottom, #aaa, #131313);
        color: #fff;
        border-top: 1px solid #888;
        border-left: 1px solid #888;
        border-right: 1px solid #888;
        border-bottom: none;
    }
    #abaControl #contentAba {
        background-color: transparent;
    }
    #abaControl .conteudoAba {
        width: auto;
        display: none;
        height: auto;
        padding: 0px;
        text-align: left;
    }
/*------------------------------------------------*/
/* Switch SECTION On Off*/
/*------------------------------------------------*/
.Switch {
    position: relative;
    display: inline-block;
    font-size: 1.6em;
    font-weight: bold;
    color: #ccc;
    text-shadow: 0px 1px 1px rgba(255,255,255,0.8);
    height: 18px;
    padding: 6px 6px 5px 6px;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 4px;
    background: #ececec;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.1), inset 0px 1px 3px 0px rgba(0,0,0,0.1);
    cursor: pointer;
    font-size: 16px;
}
body.IE7 .Switch {
    width: 78px;
}
div.Switch {
    padding: 3px;
}
.Switch span {
    display: inline-block;
    width: 36px;
    height: 18px;
    font-size: 0.9em;
}
    .Switch span.On {
        color: #00606e;
    }
    .Switch span.Off {
        color: #999;
        text-shadow: 1px 1px 3px rgba(255,255,255,.5);
    }
.Switch .Toggle {
    position: absolute;
    top: 1px;
    width: 32px;
    height: 20px;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 4px;
    background: #fff;
    background: linear-gradient(top, #cdcdcd 0%, #ffffff 100%);
    box-shadow: inset 0px 1px 0px 0px rgba(210,210,210,0.5);            
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    -ms-transition: all 0.15s ease-in-out;
    z-index: 999;
}
.Switch.On .Toggle {
    left: 2%;
}
.Switch.Off .Toggle {
    left: 54%;      
}
/*==== ToolTips ====*/
.tooltipW3 {
    position: relative;
    display: inline-block;
}

    .tooltipW3 .tooltipW3text, .tooltipW3 .tooltipW3TextBig {
        position: absolute;
        visibility: hidden;
        width: 120px;
        margin-left: -60px;
        background-color: #555;
        color: #fff;
        text-align: center;
        font-size: 0.9em;
        border-radius: 6px;
        padding: 8px 5px;
        bottom: 110%;
        left: 50%;
        opacity: 0;
        transition: opacity 0.3s;
        z-index: 1;
    }

    .tooltipW3 .tooltipW3TextBig {
        width: 400px;
        margin-left: -200px;
    }

    .tooltipW3 .tooltipW3text::after, .tooltipW3TextBig::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent transparent;
    }

    .tooltipW3:hover .tooltipW3text, .tooltipW3:hover .tooltipW3TextBig {
        visibility: visible;
        opacity: 1;
    }
/*==================*/

.linha-odd {
    background-color: #FEFEFE;
}
.linha-even {
    background-color: #e6e6e6;
}

/*====== FATURA ======*/
#fatura {
    background-color: #fff;
    width: 800px;
    padding: 5px;
    color: #000;
}
    #fatura .topo {
        width: auto;
        height: 100px;
        border-bottom: 3px solid #000;
    }
        #fatura .topo .logoAgencia {
            float: left;
            height: 100px;
            padding: 5px;
        }
        #fatura .topo .numero {
            float: right;
            padding: 55px 20px 5px 5px;
            font-size: 1.3em;
            font-weight: bold;
        }

    #fatura .comprador, .fornecedor, .pedido, .servicos, .dadosBancarios {
        padding-bottom: 25px;
        color: #000;
    }
    #fatura .corpoFatura {
        width: auto;
        font-size: 1em;
        padding: 10px 0px 30px 0px;
        text-align: left;        
    }
        #fatura .corpoFatura .dadosComprador {
            width: 45%;
            text-align: left;
            color: #000;
        }
        #fatura .corpoFatura .dados {
            width: auto;
        }
            #fatura .corpoFatura .dados table tr th, td {
                text-align: center;
            }
            #fatura .corpoFatura .dados table thead tr th {
                padding: 5px 5px 5px 5px;
                background-color: #ccc;
                width: calc(100% / 3);
            }
    #fatura .dadosBancarios {
        padding-top: 20px;
    }

table thead tr th, table thead tr td, table tbody tr th, table tbody tr td, table tfoot tr th, table tfoot tr td {
    text-align: left;
}