/*Fondo general: Contiene a contenedor*/
body {
    
    font-family: Tahoma, sans-serif;
    font-size: 9pt;
    
    background-image: url("images/login-bg.png");
    background-position: bottom;
    background-repeat: repeat-x;
    
    height: 100%;
    
    overflow:hidden;
    
}

input, textarea, select {
    font-size: 9pt !important;
    color: #000000;
    padding: 3px 4px 3px 2px;
    font-family: inherit;
    margin: 0px 0px 0px 0px;
    border: 1px solid #B2B2B2;
    border-radius: 2px;
}

input:focus, textarea:focus, select:focus {
    
    border: 1px solid #5F89CF !important;
    
}

input, textarea {
    background: url("images/form-text-bg.png");
    background-repeat: repeat-x;
    background-color: #FFFFFF;
}

/*CONTENEDOR GENERAL - Contiene a: encabezado, contenido y pieDePagina*/
div.contenedor {
    
    width: 100%;
    height: 100%;
    
    margin: 0 auto;
    min-height: 100%;
    
    overflow:visible;
    
}



/*Encabezado de pagina*/
div.encabezado {
    
    display: block;
    
    background-image: url("images/login-logo.png");
    background-repeat: no-repeat;
    background-position: center;
    
    width: 100%;
    height: 30%;
    
    margin-top: auto;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
    
}

div.contenido{
    
    margin-top: auto;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
    
    height: 70%;
    width: 420px;
    
    overflow:visible;
}

div.rodape {
    
    display: block;
    
    background-image: url("images/login-img.png");
    background-repeat: no-repeat;
    background-position: bottom;
    
    width: 710px;
    height: 210px;
    
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
    
    margin: -210px auto 0;
    
}

div.formulario {
    
    margin-top: auto;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
    
    height: 76px;
    width: 420px;
    
    padding: 24px 0px 0px 0px;
    
    background-color: #D3DADD;
    
}

.icePnlGrd {
    margin: auto;
    border-collapse: collapse;
}

.botao {
    background: linear-gradient(#FBFBFB, #F1F1F1) repeat scroll 0 0 #FBFBFB;
    border: 1px solid #999999;
    border-radius: 3px 3px 3px 3px;
    color: #000000;
    font-size: 8pt;
    
    text-align: center;
    text-decoration: none;
    padding: 6px 15px 6px 15px;
    display: inline;
    cursor: pointer;
    margin: 0px 5px 0px 0px;
}

.botao:hover {
    background: linear-gradient(#FFFFFF, #F7F7F7) repeat scroll 0 0 #FEFEFE;
    border: 1px solid #666666;
}

.iceOutLbl{
    font-size: 9pt;
    font-weight: bold;
}

.tabelaCamposFormularioLabel {
    padding-right: 5px;
    color: #000000;
    text-align: right;
}

.tabelaCamposFormularioInput {
    height: 26px;
}

.tabelaCamposFormularioBotao {
    padding-left: 10px;
}

div.errorLogin {
    margin: auto;
    margin-bottom: 10px;
    width: 382px;
    height: 30px;
    line-height: 30px;
    padding-left: 36px;
    border: 1px solid #EF4C4C;
    background-color: #FF9D9D;
    background-image: url("images/message-attention.png");
    background-repeat: no-repeat;
    background-position: left center;
}

