﻿html, body, form {
    width: 100%;
    height: 100%;
    position: relative;
}


body {
    margin: 0px;
    padding: 0px;
    background: #FFF;
    font-family: 'CGSaurus','Century Gothic','Arial';
    min-width: 960px;
    min-height: 600px;
    background-color: #ffffff;
    background-image: url('sistema/back_tela.png');
    background-size: 150px auto;
    background-position: right bottom;
    background-repeat: repeat-x;
}

@media screen and (max-device-width: 800px) {
    body {
        min-width: 1200px;
        min-height: 900px;
    }
}

#btnAlertaOk:focus {
    border: 1px dotted #222;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    background-color: rgba(255,255,255,0.2);
    background-position: 160px 12px;
}

#btnAlertaOk:hover {
    border: 1px dotted #3A3A3A;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.4);
    background-color: rgba(255,255,255,0.6);
    background-position: 160px 12px;
}

.pnlTop {
    width: -webkit-calc(100% - 100px);
    width: calc(100% - 250px);
    height: 50px;
    background: rgb(68,68,68);
    background: -moz-linear-gradient(left, rgba(68,68,68,1) 0%, rgba(95,95,95,1) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(68,68,68,1)), color-stop(100%,rgba(95,95,95,1)));
    background: -webkit-linear-gradient(left, rgba(68,68,68,1) 0%,rgba(95,95,95,1) 100%);
    background: -o-linear-gradient(left, rgba(68,68,68,1) 0%,rgba(95,95,95,1) 100%);
    background: -ms-linear-gradient(left, rgba(68,68,68,1) 0%,rgba(95,95,95,1) 100%);
    background: linear-gradient(to right, rgba(68,68,68,1) 0%,rgba(95,95,95,1) 100%);
    position: absolute;
    top: 0px;
    left: 250px;
    z-index: 1;
    transition-duration: 0.5s;
    -ms-transition-duration: 0s;
    transition-timing-function: ease-in-out;
    transition-property: left,width;
}

    .pnlTop .pnlTarefas {
        float: left;
        width: calc(100% - 290px);
        height: 50px;
        overflow-y: auto;
        overflow-x: hidden;
    }

        .pnlTop .pnlTarefas::-webkit-scrollbar {
            width: 10px;
            height: 10px;
            background-color: rgba(255,255,255,0.1);
            border: 0px solid #999;
            padding: 10px;
            -webkit-transition: all 1s linear;
            -moz-transition: all 1s linear;
            -o-transition: all 1s linear;
            transition: all 1s linear;
            border-radius: 0px;
        }

        .pnlTop .pnlTarefas::-webkit-scrollbar-thumb {
            min-height: 0.8em;
            min-width: 0.8em;
            cursor: pointer;
            background-color: rgba(255,255,255,0.2);
            border: 0px solid #999;
        }

            .pnlTop .pnlTarefas::-webkit-scrollbar-thumb:hover {
                background-color: rgba(255,255,255,0.3);
            }

            .pnlTop .pnlTarefas::-webkit-scrollbar-thumb:active {
                background-color: rgba(255,255,255,0.4);
            }

        .pnlTop .pnlTarefas .pnlTarefa {
            position: relative;
            height: 50px;
            margin-right: 2px;
            float: left;
        }

            .pnlTop .pnlTarefas .pnlTarefa .lblTarefa {
                margin-top: 16px;
                width: 100%;
                float: left;
                color: #FFF;
                text-overflow: ellipsis;
                white-space: nowrap;
                overflow: hidden;
                font-size: 13px;
            }

            .pnlTop .pnlTarefas .pnlTarefa .imgTarefa {
                position: absolute;
                top: 50%;
                left: 5px;
                margin-top: -20px;
                width: 40px;
            }

            .pnlTop .pnlTarefas .pnlTarefa .btnFecharTarefa {
                position: absolute;
                top: 0px;
                right: 0px;
                width: 24px;
                height: 24px;
                background: url('botoes/preto/fechar_32.png');
                background-repeat: no-repeat;
                background-position: center;
                background-size: 16px 16px;
            }

                .pnlTop .pnlTarefas .pnlTarefa .btnFecharTarefa:hover {
                    background-color: #eee;
                }


            .pnlTop .pnlTarefas .pnlTarefa .btnAtualizarTarefa {
                position: absolute;
                bottom: 0px;
                right: 0px;
                width: 24px;
                height: 24px;
                background: url('botoes/preto/atualizar_32.png');
                background-repeat: no-repeat;
                background-position: center;
                background-size: 16px 16px;
            }

                .pnlTop .pnlTarefas .pnlTarefa .btnAtualizarTarefa:hover {
                    background-color: #eee;
                }


            .pnlTop .pnlTarefas .pnlTarefa[status=inativo] {
                max-width: 0px;
                min-width: 0px;
                background: rgba(255,255,255,0.1);
                padding-left: 10px;
                padding-right: 40px;
                transition-duration: 0.5s;
                transition-timing-function: ease-in-out;
                transition-property: padding,opacity,max-width,min-width,margin;
            }

            .pnlTop .pnlTarefas .pnlTarefa[status=ativo] .imgTarefa, .pnlTop .pnlTarefas .pnlTarefa:hover .imgTarefa {
            }

            .pnlTop .pnlTarefas .pnlTarefa[status=ativo], .pnlTop .pnlTarefas .pnlTarefa:hover {
                min-width: 50px;
                max-width: 250px;
                background: #6596C3;
                padding-left: 60px;
                padding-right: 40px;
                transition-duration: 0.5s;
                transition-timing-function: ease-in-out;
                transition-property: padding,opacity,max-width,min-width,margin,background;
            }

            .pnlTop .pnlTarefas .pnlTarefa:hover {
                cursor: pointer;
                transition-delay: 0.5s;
            }

            .pnlTop .pnlTarefas .pnlTarefa[status=inativo] .lblTarefa,
            .pnlTop .pnlTarefas .pnlTarefa[status=inativo] .btnFecharTarefa,
            .pnlTop .pnlTarefas .pnlTarefa[status=inativo] .btnAtualizarTarefa {
                opacity: 0;
                transition-duration: 0.2s;
                transition-timing-function: ease-in-out;
                transition-property: opacity;
            }


            .pnlTop .pnlTarefas .pnlTarefa[status=ativo] .lblTarefa,
            .pnlTop .pnlTarefas .pnlTarefa:hover .lblTarefa,
            .pnlTop .pnlTarefas .pnlTarefa[status=ativo] .btnFecharTarefa,
            .pnlTop .pnlTarefas .pnlTarefa:hover .btnFecharTarefa,
            .pnlTop .pnlTarefas .pnlTarefa[status=ativo] .btnAtualizarTarefa,
            .pnlTop .pnlTarefas .pnlTarefa:hover .btnAtualizarTarefa {
                opacity: 1;
                transition-delay: 0.8s;
                transition-duration: 0.2s;
                transition-timing-function: ease-in-out;
                transition-property: opacity;
            }

    .pnlTop .pnlTopDeskTop {
        float: right;
        position: relative;
        width: 30px;
        height: 50px;
        cursor: pointer;
        background: #666;
        transition-duration: 0.2s;
        transition-timing-function: ease-in-out;
        transition-property: background;
        cursor: pointer;
    }

        .pnlTop .pnlTopDeskTop:hover {
            background: #095eba;
        }

        .pnlTop .pnlTopDeskTop .imgTopDeskTop {
            width: 20px;
            float: left;
            margin-top: 15px;
            margin-left: 5px;
        }

    .pnlTop .pnlAlertaV4 {
        float: right;
        position: relative;
        width: 50px;
        height: 50px;
        cursor: pointer;
        background: #ff713a;
        transition-duration: 0.2s;
        transition-timing-function: ease-in-out;
        transition-property: background;
        cursor: pointer;
    }

        .pnlTop .pnlAlertaV4:hover {
            background: #ff713a;
        }

        .pnlTop .pnlAlertaV4 .imgAlertaV4 {
            width: 32px;
            float: left;
            margin-top: 10px;
            margin-left: 8px;
        }

        .pnlTop .pnlAlertaV4 .pnlContAlertas {
            max-height: 0px;
            opacity: 0;
            overflow: auto;
            position: fixed;
            right: 240px;
            width: 500px;
            background: #FFF;
            border: none;
            top: 50px;
            box-shadow: 0px 3px 5px rgba(0,0,0,0.3);
            transition-duration: 0.2s,0.2s;
            transition-timing-function: ease-in-out;
            transition-property: max-height,opacity;
            overflow: hidden;
        }

        .pnlTop .pnlAlertaV4:hover .pnlContAlertas, .pnlTop .pnlAlertaV4[status='on'] .pnlContAlertas {
            max-height: 300px;
            opacity: 1;
        }

        .pnlTop .pnlAlertaV4 .lblTitAlertas {
            cursor: default;
            width: 100%;
            background: #ff713a;
            color: #FFF;
            float: left;
            text-align: center;
            padding-top: 5px;
            padding-bottom: 5px;
            text-shadow: 1px 1px 0px rgba(255,255,255,0.3);
            font-size: 18px;
        }

        .pnlTop .pnlAlertaV4 .pnlMensagensAlerta .divNovoAlerta {
            cursor: default;
            padding-left: 10px;
            padding-right: 10px;
            padding-bottom: 5px;
            padding-top: 5px;
            display: inline-block;
            float: left;
            width: calc(100% - 20px);
            border-bottom: 1px dotted #DDD;
            margin-bottom: -1px;
        }

            .pnlTop .pnlAlertaV4 .pnlMensagensAlerta .divNovoAlerta:hover {
                background: #F9F9F9;
            }

            .pnlTop .pnlAlertaV4 .pnlMensagensAlerta .divNovoAlerta strong {
                font-size: 14px;
                clear: left;
                color: #444;
            }

                .pnlTop .pnlAlertaV4 .pnlMensagensAlerta .divNovoAlerta strong b {
                    color: #f7591d;
                }

            .pnlTop .pnlAlertaV4 .pnlMensagensAlerta .divNovoAlerta i {
                float: left;
                clear: left;
                padding-left: 5px;
                font-style: normal;
                font-size: 12px;
                color: #666;
            }

    .pnlTop .pnlUsuario {
        float: right;
        display: inline-block;
        background: #6c6c6c;
        padding-left: 10px;
        height: 100%;
        width: 200px;
        overflow: hidden;
        transition-duration: 0.2s;
        transition-timing-function: ease-in-out;
        transition-property: background;
        cursor: pointer;
    }

        .pnlTop .pnlUsuario:hover {
            background: rgb(55, 140, 196);
        }


        .pnlTop .pnlUsuario .imgUsuario {
            float: right;
            margin-top: 12px;
            margin-right: 12px;
            height: 24px;
        }

        .pnlTop .pnlUsuario .lblUsuarioView {
            float: left;
            margin-top: 10px;
            margin-left: 10px;
            margin-right: 20px;
            color: #FFF;
        }

            .pnlTop .pnlUsuario .lblUsuarioView strong {
                float: left;
                clear: left;
                width: 130px;
                text-overflow: ellipsis;
                white-space: nowrap;
                overflow: hidden;
            }

            .pnlTop .pnlUsuario .lblUsuarioView i {
                float: left;
                clear: left;
                width: 130px;
                font-size: 11px;
                margin-top: -4px;
                text-overflow: ellipsis;
                white-space: nowrap;
                overflow: hidden;
            }

    .pnlTop .pnlInformacoesUsuario {
        position: fixed;
        top: 50px;
        right: 0px;
        height: 0px;
        width: 350px;
        background-color: #222;
        background-size: 100% auto;
        background-position: center bottom;
        background-repeat: no-repeat;
        overflow: hidden;
        opacity: 0;
        right: -360px;
        transition-duration: 0.2s,1s;
        transition-timing-function: ease-in-out;
        transition-delay: 0s;
        transition-property: opacity,right;
        cursor: default;
        height: calc(100% - 50px);
        box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    }


    .pnlTop .pnlUsuario[status=ativo] + .pnlInformacoesUsuario {
        opacity: 1;
        right: 0px;
        transition-duration: 0.2s,0.25s;
        transition-delay: 0.2s !important;
        transition-property: opacity,right;
    }

    .pnlTop .pnlInformacoesUsuario .lblInformacao {
        float: left;
        clear: left;
        padding-left: 10px;
        padding-right: 10px;
        width: 330px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        line-height: 40px;
        font-size: 15px;
        color: #FFF;
        margin-top: 5px;
        transition-duration: 0.3s;
        transition-timing-function: ease-in-out;
        transition-property: color;
        background: rgba(0,0,0,0.1);
    }

        .pnlTop .pnlInformacoesUsuario .lblInformacao b {
            font-weight: normal;
        }

        .pnlTop .pnlInformacoesUsuario .lblInformacao:hover {
            color: #ff6500;
        }

    .pnlTop .pnlInformacoesUsuario .lblTituloInformacao {
        font-size: 17px;
        width: 100%;
        float: left;
        clear: left;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-bottom: 10px;
        color: #fff;
        text-align: center;
        background: rgba(0,0,0,0.5);
    }


    .pnlTop .pnlInformacoesUsuario .pnlInformativoBoleto {
        position: absolute;
        width: 100%;
        bottom: 252px;
        display: inline-block;
        left: 0px;
        background: rgba(0,0,0,0.4);
        height: 50px;
        transition-duration: 0.3s;
        transition-timing-function: ease-in-out;
        transition-property: background;
    }

        .pnlTop .pnlInformacoesUsuario .pnlInformativoBoleto:hover {
            background: #c84807;
        }

    .pnlTop .pnlInformacoesUsuario .imgInformativo {
        float: left;
        height: 35px;
        margin-top: 8px;
        margin-left: 10px;
    }

    .pnlTop .pnlInformacoesUsuario .lblBoleto {
        width: 250px;
        float: left;
        text-align: left;
        font-size: 14px;
        margin-left: 15px;
        margin-top: 8px;
        color: #fff;
    }


    .pnlTop .pnlInformacoesUsuario .pnlBotoesInformacoesUsuario {
        position: absolute;
        bottom: 0px;
        display: inline-block;
        left: 0px;
    }

        .pnlTop .pnlInformacoesUsuario .pnlBotoesInformacoesUsuario input {
            margin-top: 1px;
            background: rgba(0,0,0,0.2);
        }

            .pnlTop .pnlInformacoesUsuario .pnlBotoesInformacoesUsuario input:hover {
                background: #c84807;
            }



.pnlModulos {
    width: 250px;
    height: 100%;
    background: #03336d;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
    transition-duration: 0.5s;
    -ms-transition-duration: 0s;
    transition-timing-function: ease-in-out;
    transition-property: width;
    transition-delay: 0s;
}

    .pnlModulos[status=fechado] {
        transition-delay: 1s;
    }

    .pnlModulos .pnlImagemSaurus .divLogoRevenda {
        width: 100%;
        height: 100%;
        position: absolute;
        background-size: 250px 180px;
        top: 0px;
        left: 0px;
        background-position: 0px 0px;
        background-repeat: no-repeat;
        transition: background 0.2s 1s ease-in-out;
    }

    .pnlModulos[status=fechado] .pnlImagemSaurus .divLogoRevenda {
        background-position: 0px -50px;
        transition: background 0.2s 1s ease-in-out;
    }


    .pnlModulos .pnlImagemSaurus {
        width: 100%;
        height: 50px;
        position: absolute;
        top: 0px;
        left: 0px;
        background: rgb(53,53,53);
        transition-duration: 0.5s;
        transition-timing-function: ease-in-out;
        transition-property: background;
    }

        .pnlModulos .pnlImagemSaurus .lblDominio {
            position: absolute;
            top: 9px;
            color: #999;
            width: 180px;
            font-size: 11px;
            left: 60px;
            display: none;
        }

        .pnlModulos .pnlImagemSaurus .lblFantasia {
            position: absolute;
            overflow: hidden;
            left: 60px;
            font-size: 19px;
            color: #FFF;
            display: none;
            top: 19px;
            width: 180px;
            height: 22px;
            text-transform: capitalize;
            line-height: 22px;
            text-shadow: 1px 1px 3px rgba(255,255,255,0.2);
        }


.cssload-squares {
    position: relative;
    width: 100%;
    z-index: 1;
    opacity: 0;
    transition-duration: 0.8s;
    transition-delay: 0.2s;
    transition-timing-function: ease-in-out;
    transition-property: opacity;
    overflow: hidden;
    height: 50px;
}

    .cssload-squares[status='loading'] {
        opacity: 1;
        transition-delay: 0.5s;
    }

    .cssload-squares, .cssload-squares * {
        box-sizing: border-box;
        -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
    }

        .cssload-squares span {
            display: inline-block;
            height: 50px;
            width: 50px;
            background: transparent;
            border-radius: 0px;
        }

            .cssload-squares span:nth-child(1) {
                animation: rotateY 2.6s 0.195s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
                -o-animation: rotateY 2.6s 0.195s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
                -ms-animation: rotateY 2.6s 0.195s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
                -webkit-animation: rotateY 2.6s 0.195s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
                -moz-animation: rotateY 2.6s 0.195s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
            }

            .cssload-squares span:nth-child(2) {
                animation: rotateY 2.6s 0.39s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
                -o-animation: rotateY 2.6s 0.39s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
                -ms-animation: rotateY 2.6s 0.39s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
                -webkit-animation: rotateY 2.6s 0.39s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
                -moz-animation: rotateY 2.6s 0.39s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
            }

            .cssload-squares span:nth-child(3) {
                animation: rotateY 2.6s 0.585s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
                -o-animation: rotateY 2.6s 0.585s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
                -ms-animation: rotateY 2.6s 0.585s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
                -webkit-animation: rotateY 2.6s 0.585s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
                -moz-animation: rotateY 2.6s 0.585s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
            }

            .cssload-squares span:nth-child(4) {
                animation: rotateY 2.6s 0.78s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
                -o-animation: rotateY 2.6s 0.78s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
                -ms-animation: rotateY 2.6s 0.78s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
                -webkit-animation: rotateY 2.6s 0.78s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
                -moz-animation: rotateY 2.6s 0.78s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
            }

            .cssload-squares span:nth-child(5) {
                animation: rotateY 2.6s 0.975s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
                -o-animation: rotateY 2.6s 0.975s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
                -ms-animation: rotateY 2.6s 0.975s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
                -webkit-animation: rotateY 2.6s 0.975s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
                -moz-animation: rotateY 2.6s 0.975s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
            }



@keyframes rotateY {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(90deg);
        background: #1284e2;
    }

    100% {
        transform: rotateY(0deg);
    }
}

@-o-keyframes rotateY {
    0% {
        -o-transform: rotateY(0deg);
    }

    50% {
        -o-transform: rotateY(90deg);
        background: #1284e2;
    }

    100% {
        -o-transform: rotateY(0deg);
    }
}

@-ms-keyframes rotateY {
    0% {
        -ms-transform: rotateY(0deg);
    }

    50% {
        -ms-transform: rotateY(90deg);
        background: #1284e2;
    }

    100% {
        -ms-transform: rotateY(0deg);
    }
}

@-webkit-keyframes rotateY {
    0% {
        -webkit-transform: rotateY(0deg);
    }

    50% {
        -webkit-transform: rotateY(90deg);
        background: #1284e2;
    }

    100% {
        -webkit-transform: rotateY(0deg);
    }
}

@-moz-keyframes rotateY {
    0% {
        -moz-transform: rotateY(0deg);
    }

    50% {
        -moz-transform: rotateY(90deg);
        background: #1284e2;
    }

    100% {
        -moz-transform: rotateY(0deg);
    }
}

.pnlModulos .pnlMenu {
    display: inline-block;
    width: 100%;
    margin-bottom: 40px;
}


.pnlModulos .pnlRecolher {
    position: absolute;
    left: 0px;
    width: calc(100% - 8px);
    height: 0px;
    background-size: auto 100%;
    cursor: pointer;
    background: rgb(50,50,50);
    border-right: 8px solid rgb(40,40,40);
    bottom: 0px;
    opacity: 0;
    z-index: 3;
    transition-duration: 0.2s,0.5s;
    transition-delay: 0s;
    transition-timing-function: ease-in-out;
    transition-property: opacity,height;
    overflow: hidden;
}

.pnlModulos[favoritos='true'] .pnlRecolher {
    opacity: 1;
    height: 40px;
}

.pnlModulos[favoritos='false']:hover .pnlRecolher {
    opacity: 1;
    height: 40px;
    transition-duration: 0.5s,0.2s;
    transition-delay: 0.3s;
}

.pnlModulos .pnlRecolher:hover {
    background: rgba(30,30,30,0.98);
}

.pnlModulos .pnlRecolher .imgRecolher {
    float: left;
    margin-top: 13px;
    margin-left: 13px;
    height: 19px;
}

.pnlModulos .pnlRecolher .lblRecolher {
    float: left;
    margin-top: 11px;
    margin-left: 18px;
    line-height: 22px;
    color: #EEE;
    font-size: 17px;
}

.pnlModulos .pnlConteudoMenu {
    position: absolute;
    top: 50px;
    height: calc(100% - 50px);
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    transition-duration: 0.5s;
    transition-delay: 0s;
    transition-timing-function: ease-in-out;
    transition-property: height;
}

.pnlModulos[favoritos='true'] .pnlRecolher {
}

.pnlModulos .pnlConteudoMenu::-webkit-scrollbar, .pnlModulos .pnlFilho9899::-webkit-scrollbar {
    width: 8px;
    height: 0px;
    background-color: rgba(0,0,0,0.2);
    -webkit-transition: all 1s linear;
    -moz-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;
    border-radius: 0px;
}


.pnlModulos .pnlConteudoMenu::-webkit-scrollbar-thumb, .pnlModulos .pnlFilho9899::-webkit-scrollbar-thumb {
    min-height: 0.8em;
    min-width: 0.8em;
    cursor: pointer;
    background-color: rgba(255,255,255,0.2);
    border: 0px solid #999;
}

    .pnlModulos .pnlConteudoMenu::-webkit-scrollbar-thumb:hover, .pnlModulos .pnlFilho9899::-webkit-scrollbar-thumb:hover {
        background-color: rgba(255,255,255,0.3);
    }

    .pnlModulos .pnlConteudoMenu::-webkit-scrollbar-thumb:active, .pnlModulos .pnlFilho9899::-webkit-scrollbar-thumb:active {
        background-color: rgba(0,0,0,0.4);
    }




.pnlBackground {
    width: calc(100% - 250px);
    height: calc(100% - 50px);
    position: absolute;
    top: 50px;
    left: 250px;
    z-index: 0;
    transition-duration: 0.5s;
    -ms-transition-duration: 0s;
    transition-timing-function: ease-in-out;
    transition-property: width,left;
}


    .pnlBackground .pnlIframeTarefa {
        width: 100%;
        height: 100%;
        position: absolute;
        background-color: #ffffff;
        background: url('sistema/back_tela.png'), linear-gradient(to bottom, #6596C3 0%,#ffffff 20%);
        background-size: 150px, auto;
        background-position: right bottom;
        background-repeat: repeat-x;
        left: 0px;
        top: 0px;
    }

        .pnlBackground .pnlIframeTarefa iframe {
            width: 100%;
            height: 100%;
            border: 0px solid transparent;
        }

        .pnlBackground .pnlIframeTarefa[status=inativo] {
            opacity: 0;
            transition-duration: 0.5s;
            transition-timing-function: ease-in-out;
            transition-property: background,opacity;
        }

        .pnlBackground .pnlIframeTarefa[status=ativo] {
            opacity: 1;
            transition-duration: 0.5s;
            transition-timing-function: ease-in-out;
            transition-property: background,opacity;
        }

    .pnlBackground .iframeTarefas {
        height: 100%;
        width: 250px;
        border: 0px;
        transition-duration: 0.2s;
        transition-timing-function: ease-in-out;
        transition-property: background,border,box-shadow;
        border-left: 0px solid transparent;
    }

        .pnlBackground .iframeTarefas:hover, .pnlBackground .iframeTarefas[selecionado=true] {
            background: rgba(255,255,255,0.6);
            box-shadow: -4px 0px 0px rgba(0,0,0,0.02);
        }

.iframeGenerico {
    border: 1px solid transparent;
    background: transparent;
    width: calc(100% - 2px);
    height: calc(100% - 32px);
}

.pnlInformativosMain {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

    .pnlInformativosMain::-webkit-scrollbar {
        width: 10px;
        height: 10px;
        background-color: rgba(200,200,200, 0.2);
        border: 0px solid #999;
        padding: 10px;
        -webkit-transition: all 1s linear;
        -moz-transition: all 1s linear;
        -o-transition: all 1s linear;
        transition: all 1s linear;
        border-radius: 0px;
    }

    .pnlInformativosMain::-webkit-scrollbar-thumb {
        min-height: 0.8em;
        min-width: 0.8em;
        cursor: pointer;
        background-color: rgba(150,150,150, 0.2);
        border: 0px solid #999;
    }

        .pnlInformativosMain::-webkit-scrollbar-thumb:hover {
            background-color: rgba(150,150,150, 0.5);
        }

        .pnlInformativosMain::-webkit-scrollbar-thumb:active {
            background-color: rgba(150,150,150, 0.79);
        }


.pnlCamposSobre .lblInfSistema {
    float: left;
    clear: left;
    font-size: 12px;
}

.pnlCamposSobre .imgSobreSaurusV4 {
    width: 200px;
    position: absolute;
    right: 25px;
    top: 60px;
}


.pnlCamposSobre .divSobreV4 {
    width: 250px;
    height: 80px;
    position: absolute;
    right: 25px;
    top: 60px;
    background-position: 0px -100px;
    background-size: 250px 180px;
    background-repeat: no-repeat;
}


.pnlCamposSobre .lblVersaoApp {
    float: left;
    clear: left;
    font-size: 12px;
}

    .pnlCamposSobre .lblVersaoApp b {
        color: #035399;
    }

.pnlCamposSobre .lblVersaoBd {
    float: left;
    clear: left;
    margin-top: 5px;
    line-height: 25px;
    font-size: 12px;
    height: 75px;
    overflow: auto;
    width: 250px;
}

    .pnlCamposSobre .lblVersaoBd strong {
        color: #e65501;
    }

    .pnlCamposSobre .lblVersaoBd b {
        float: left;
        clear: left;
        line-height: 25px;
        margin-right: 5px;
        margin-left: 20px;
    }

.pnlCamposSobre .lblCopyright {
    float: left;
    clear: left;
    margin-top: 20px;
    font-size: 11px;
}

.ModalFullPropaganda {
    min-width: 935px;
    min-height: 530px;
    width: calc(100% - 100px);
    height: calc(100% - 100px);
}
