﻿/**********************************************
CLASSES QUE SÃO IGUAIS PARA TODOS
**********************************************/

* {
    margin: 0;
    padding: 0;
}

fieldset {
    margin: 0 auto;
    width: 700px;
    height: 100%;
    position: relative;
    border: solid 0px gray;
}

body {
    font-family: sans-serif, Verdana, Arial, Helvetica;
}

ul {
    list-style-type: none;
}

li {
    list-style-type: none;
}

hr {
    border: solid 1px black;
    margin-bottom: 10px;
    margin-top: 10px;
}
/*alterei o margin-top Jack 11-01-2010*/
.CaixaText {
    text-transform: uppercase;
    border: solid 1px gray;
}

.CaixaTextUsuario {
    border: solid 1px gray;
}

.CaixaTextEmail {
    text-transform: lowercase;
    border: solid 1px gray;
}

.EstiloFontBranca {
    color: #FFFFFF;
    font-family: Verdana;
    font-size: 10pt;
    font-weight: bold;
}

.Combo {
    height: 20px;
    border: solid 1px gray;
}

.AlignDireita {
    text-align: right;
}

.AlignEsquerda {
    text-align: left;
}

.AlignCentro {
    text-align: center;
}

.DivLinha100PERC {
    float: left;
    width: 100%;
}

.DivFloatDireita {
    float: right;
}

.DivFloatEsquerda {
    float: left;
}

.BordaBottomCinza {
    border: ridge 1px #FFFFFF;
    clear: both;
    margin-top: 10px;
    margin-bottom: 10px;
}

.FontVerdana10Neg {
    font-family: Verdana;
    font-size: 10pt;
    font-weight: bold;
}

.FontVerdana12Neg {
    font-family: Verdana;
    font-size: 12pt;
    font-weight: bold;
}

.FontVerdana18Neg {
    font-family: Verdana;
    font-size: 18pt;
    font-weight: bold;
}

.BolaRowGrid {
    border-radius: 50%;
    height: 10px;
    width: 10px;
    border: none;
    display: inline-block;
}

input[readonly="readonly"], input[disabled="disabled"] {
    color: gray;
    cursor: default;
}

.BotaoConfirma {
    margin-bottom: -5px;
}

.botoes {
    background: #284775;
    border-right: outset 3px gray;
    border-bottom: outset 3px gray;
    color: #FFFFFF;
    font-weight: bold;
    font-family: Arial;
    font-size: 12px;
    width: 100px;
    height: 20px;
    text-transform: uppercase;
    cursor: pointer;
}

.DivProcessando {
    /*esta propriedade cobre toda a pagina, se não usar com o '!important' o fundo transparente so corre uma parte da tela*/
    position: fixed !important;
    position: absolute;
    /*display: none; /* deixando o display em 'none' quando a master page carrega ela não é visualizada,*/
    top: 0;
    left: 0;
    z-index: 110; /*define esta div como uma camada*/
    width: 100%;
    min-width: 1024px;
    height: 100%;
    color: #000000;
    /*cobre o fundo da div com uma imagem transparente, obtendo assim o aspecto de opacidade*/
    background: url(images/BG-transparente.png);
}

    .DivProcessando .FundoGifProcessando {
        position: relative;
        float: left;
        left: 50%;
        top: 50%;
        margin-left: -150px;
        margin-top: -100px;
        width: 300px;
        height: 200px;
        /*background: #fff;
	border: solid 2px #DDD;*/
        z-index: 104;
    }

.DivConfirmCentralizada {
    width: 500px;
    height: 200px;
    top: 50%;
    background-color: #EFEFEF;
    border: 1px inset gray;
    border-style: inset;
}

.DivUploadManual {
    width: 500px;
    height: 100px;
    background-color: #EFEFEF;
    border: 1px inset gray;
    border-style: inset;
    text-align: center;
}

.RotuloPeq {
    font-weight: bold;
    font-size: 10px;
    font-family: Verdana;
    text-align: left;
    background: none;
    border: none;
    padding-top: 2px;
}

.RotuloMedio {
    font-weight: bold;
    font-size: 14px;
    font-family: Verdana;
    border: none;
    background: none;
    /*RETIREI O TEXT-ALIGN: RIGHT POIS PRECISEI UTILIZAR ESTA CLASSE EM OUTRO LUGAR.
    USAR ESTA CLASSE EM CONJUNTO COM A CLASSE 'AlignDireita' QUANDO PRECISAR ALINHAR A DIREITA*/
}

.RotuloGrd {
    font-weight: bold;
    font-size: 22px;
    font-family: Verdana;
    text-align: left;
    border: none;
    background: none;
}

.RotuloFontTimesNew {
    font-weight: bold;
    font-size: 13.5pt;
    font-family: Times New Roman;
}

.RotuloSemNegrito {
    font-weight: normal;
    font-size: 13.5pt;
    font-family: Times New Roman;
}
/*Para todos os GRIDVIEW criados no projeto */
.DivGrid /*propriedades da div que contém o grid*/ {
    position: relative;
    float: left;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.PosGrid /*propriedades do em geral grid*/ {
    position: relative;
    float: left;
    left: 1%;
    width: 98%;
    margin: 0 auto;
}

.PosGridTab /*propriedades do em geral grid dentro de TAB Container*/ {
    position: relative;
    left: 1%;
    width: 98%;
    margin: 0 auto;
}

TABLE.EstiloInternoGrid /*classe feita para o conteudo interno do radgridview  */ {
    font-family: Verdana;
    Font-Size: 7.5pt;
    font-weight: bold;
    /*Roberto pediu para que o conteudo dos grids fiquem em Maiúsculo - Jaqueline 27-01-10*/
    text-transform: uppercase;
    margin: 10px;
    width: 90%;
}

    TABLE.EstiloInternoGrid span {
        display: block;
    }

TABLE.EstiloGrid /*classe feita para o conteudo do gridview que nada mais é do que uma tabela, 
    com isso todas as tabelas teram esta formatação */ {
    border: solid 1px gray;
    font-family: Verdana;
    Font-Size: 7.5pt;
    font-weight: bold;
    /*Roberto pediu para que o conteudo dos grids fiquem em Maiúsculo - Jaqueline 27-01-10*/
    text-transform: uppercase;
}

    TABLE.EstiloGrid a {
        color: Black;
    }
    /*classe para todos os link dentro do gridview ou table*/

    TABLE.EstiloGrid TH /*classe feita para todos os cabeçalhos de grids*/ {
        background: #284775;
        Color: White;
        Font-Weight: bold;
        font-family: Verdana;
        font-Size: 10pt;
    }

TR.PagerStyle {
    background: #284775;
    height: 18px;
    Color: #FFFFFF;
}

    TR.PagerStyle a /*sem esta classe o link no rodapé fica azul*/ {
        Color: #FFFFFF;
    }

.LinhasGrid {
    height: 18px;
    background: #F7F6F3;
    margin: 0 2px 0 2px;
}

.PosLabel /*estas 3 classes de posições label servem para alinhar as div's no canto esquedo, centro e direito, 
é utilizada no cabeçalho da master page e no cabeçalho das telas OS Aberta, Protocolo consulta e Protocolo Detalhes*/ {
    float: left;
    width: 33.5%;
    text-align: left;
    margin-left: 1%;
    font-family: Verdana;
    font-size: 10pt;
    font-weight: bold;
    margin-top: 4px;
}

.PosLabel2 {
    float: left;
    width: 30%;
    text-align: center;
    font-family: Verdana;
    font-size: 10pt;
    font-weight: bold;
    margin-top: 4px;
}

.PosLabel3 {
    float: right;
    width: 33.5%;
    text-align: right;
    font-family: Verdana;
    font-size: 10pt;
    font-weight: bold;
    margin-right: 1%;
    margin-top: 4px;
}
/****FIM - CLASSES QUE SÃO IGUAIS PARA TODOS****/


/**********************************************
CLASSES DA MASTER PAGE 'PORTAL' 
**********************************************/
.ContentMaster {
    width: 99.9%;
    min-width: 1000px;
}

.Corpo {
    min-width: 1000px;
}

.rodape {
    height: 20px;
    width: 100%;
}

.ContentCabecalho {
    float: left;
    width: 99.9%;
    height: 87px;
    background: white;
}

.LogoMarca {
    float: right;
    margin: 8px;
}

.LogoJM {
    float: left;
    margin: 8px;
}

.FaixaHorizontal {
    width: 99.9%;
    height: 25px;
    background: #284775;
    clear: both;
    /*PROPRIEDADE USADA PARA ALINHAR VERTICALMENTE OS LABELS NA FAIXA HORIZONTAL*/
}

/**********************************************
FIM - CLASSES DA MASTER PAGE 'PORTAL' 
**********************************************/

/**********************************************
CLASSES DA PAGINA MENU
**********************************************/

/*@@@@ CONTROLE MENU.ASCX @@@@*/
.MenuLateral {
    position: relative;
    width: 220px;
    margin-top: 15px;
    margin-left: 5px;
}

ul#primary-nav,
ul#primary-nav ul {
    margin: 0;
    padding: 0;
    width: 220px; /* Width of Menu Items */
    border-bottom: 1px solid #000000;
    background: #DDE3D5; /* IE6 Bug */
    font-size: 90%;
    text-transform: uppercase;
}

    ul#primary-nav li {
        position: relative;
        list-style: none;
        text-transform: uppercase;
    }

        ul#primary-nav li a {
            display: block;
            text-decoration: none;
            text-transform: uppercase;
            color: #000000;
            padding: 5px;
            border: 1px solid #000000;
            border-bottom: 0;
            height: 18px;
        }
    /* Fix IE. Hide from IE Mac \*/
    * html ul#primary-nav li {
        float: left;
        height: 1%;
    }

        * html ul#primary-nav li a {
            height: 1%;
        }
    /* End */


    ul#primary-nav ul {
        position: absolute;
        display: none;
        left: 219px; /* Set 1px less than menu width */
        top: 0;
    }

    ul#primary-nav li ul li a {
        padding: 5px;
    }
    /* Sub Menu Styles */

    ul#primary-nav li:hover ul ul,
    ul#primary-nav li:hover ul ul ul,
    ul#primary-nav li.over ul ul,
    ul#primary-nav li.over ul ul ul {
        display: none;
    }
    /* Hide sub-menus initially */

    ul#primary-nav li:hover ul,
    ul#primary-nav li li:hover ul,
    ul#primary-nav li li li:hover ul,
    ul#primary-nav li.over ul,
    ul#primary-nav li li.over ul,
    ul#primary-nav li li li.over ul {
        display: block;
    }
    /* The magic */

    ul#primary-nav li.menuparent {
        background: transparent url(arrow.gif) right center no-repeat;
    }

        ul#primary-nav li.menuparent:hover,
        ul#primary-nav li.over {
            background-color: #A8A9A6;
        }

    ul#primary-nav li a:hover {
        color: #FFFFFF;
        background: #A8A9A6;
    }


/*@@@@ FIM - CONTROLE MENU.ASCX @@@@*/


/********************************************
@@@@ ESTILO DO PAINEL CENTRAL @@@@*/

/*

.ContentPainel
{
    position: relative;
    z-index: 1;
    float: left;
    margin-left: 2%;
    margin-top: 3%;
    width: 520px;
    border: solid 1px black;
}

div#slideshow {
    width: 520px;
    border: 1px solid black;

}
div#slideshow #links {
    float: right;
    clear: both;
    width: 5%;
    text-align: center;
}
div#slideshow #links li {
    font-size: 12px;
    border-top: 1px solid white;
    line-height: 49px;
}
div#slideshow #links li a {
    display: block;
}
div#slideshow #links li.inativo {
    background: #EEEEEE;
}
div#slideshow #links li.ativo {
    background: #D9D9D9;
}
div#slideshow #slides {
    background: #FFFFFC;
    height: 100%;
    color: BLACK;
    font-size: 14px;
}
div#slideshow #slides .visible {
    display: block;
}
div#slideshow #slides .hidden {
    display: none;
}
div#slideshow #slides div span {
    display: block;
}
div#slideshow #slides .titulo{
    font-weight: bold;
    font-size: 16px;
    padding: 5px 0 0 5px;
}
div#slideshow #slides .conteudo {
    padding: 0 0 0 5px;
}

*/

/*@@@@ FIM - ESTILO DO PAINEL CENTRAL @@@@
**********************************************/


/**********************************************
FIM - CLASSES DA PAGINA MENU
**********************************************/

/****************************************************************************
CLASSES DA PAGINA 'CONSULTAR ORDEM DE SERVICO' E 'PROTOCOLO CONSULTA'
*****************************************************************************/

.CabecPaginas {
    position: relative;
    float: left;
    width: 98%;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: 1%;
}


/*********************************************************************************
FIM - CLASSES DA PAGINA 'CONSULTAR ORDEM DE SERVICO ABERTA' E 'PROTOCOLO CONSULTA'
**********************************************************************************/

/***************************************************************
CLASSES DA PAGINA PEDIDO CATEGORIA  E NOTA FISCAL DETALHES
***************************************************************/
.ContentWidth640 {
    width: 640px;
    margin: 0 auto;
    margin-top: 20px;
}


/***************************************************************
FIM - CLASSES DA PAGINA PEDIDO CATEGORIA
***************************************************************/

/****************************************
ESTILO PAGINA MARCAS REPRESENTADAS
*****************************************/

.divMarcas {
    margin: 10% 10% 0 10%;
    text-align: center;
}

    .divMarcas li {
        margin: 30px 0 0 55px;
        height: 60px;
    }

.TitMarcas {
    position: relative;
    left: 50%;
    margin-top: 20px;
    margin-left: -25%;
    width: 55%;
    border-bottom: 1px solid #BBB;
}

/****************************************
FIM - ESTILO PAGINA MARCAS REPRESENTADAS
*****************************************/

/************ MaskedEdit Related Styles ***********************/
.MaskedEditFocus {
    background-color: White;
    color: #000000;
}

.MaskedEditMessage {
    color: White;
    font-weight: bold;
}

.MaskedEditError {
    background-color: White;
}

.MaskedEditFocusNegative {
    background-color: White;
    color: #000000;
}

.MaskedEditBlurNegative {
    color: #ff0000;
}



/* PAINEL DE EXIBIÇÃO DE MENSAGENS */
#pnlMensagem {
    margin: 0;
    width: 100%;
    height: 100%;
}

    #pnlMensagem .FundoTransparente {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: Black;
        opacity: .7;
        -moz-opacity: .7;
        filter: alpha(opacity=70);
        color: Black;
    }

    #pnlMensagem .PnlConteudo {
        position: fixed;
        width: 400px;
        height: 300px;
        left: -200px;
        margin-left: 50%;
        top: 50%;
        margin-top: -150px;
        padding: 15px;
        z-index: 10;
        background-color: #F0F0F0;
        border: 2px solid #C8C8C8;
    }

        #pnlMensagem .PnlConteudo input[type=button] {
            position: absolute;
            bottom: 0;
            right: 0;
        }
