/*
 * ==========================================================
 * ========================= LAYOUT =========================
 * ==========================================================
*/
/*html, body, div.contenedor {
    min-height: 100%;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}*/

/*html>body div.contenedor {
    height: auto;
}*/

body {
    margin: 0;
    padding: 0;
    background-color: #EEE;
    background-image: url(../images/background.png);
    background-repeat: repeat-x;
    background-position: top;
    color: #333;
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    font-size: 12px;
}

div.contenedor {
    /*position: absolute;
    top: 0;
    left: 50%;
    width: 980px;
    margin-left: -490px;
    background-color: #FFF;*/
    width: 1150px;
    margin: 0 auto;
    background-color: #FFF;
}

div.contenedor div.header{
    /*position: relative;
    width: 976px;
    height: 121px;
    background-image: url(../images/background-header.jpg);
    background-repeat: no-repeat;
    border: 2px solid #FFF;*/
    position: relative;
    /*height: 121px;*/
    height: 148px;
    background-image: url(../images/background-header.jpg);
    background-repeat: no-repeat;
    /*background-position: 0 27px;*/
    border: 2px solid #FFF;
}

div.contenedor div.contenido {
    /*position: relative;
    height: auto;
    padding: 10px;
    padding-bottom: 55px;*/
    padding: 10px;
}

div.contenedor div.footer {
    /*position: absolute;
    width: 100%;
    height: 45px;
    bottom: 0;
    background-image: url(../images/background-footer.png);
    background-repeat: no-repeat;*/
}
/*
 * ==========================================================
 * ====================== FIN LAYOUT ========================
 * ==========================================================
*/

h1 {
    font-size: 20px;
    font-weight: bold;
    color: #FF6600;
    padding-bottom: 20px;
}

h2 {
    color: #666;
    font-size: 14px;
    font-weight: bold;
    padding-bottom: 10px;
}

h3 {
    font-size: 12px;
    font-weight: bold;
    padding-bottom: 10px;
    color: #666;
}

a, a:visited {
    color: #336699;
    text-decoration: none;
}

a:hover, a:active {
    color: #074481;
    text-decoration: underline;
}

a.search {
    background-image: url(../images/search-icon.png);
    background-repeat: no-repeat;
    padding-left: 20px;
}

.inputSearch {
    background-image: url(../images/search-icon.png);
    background-repeat: no-repeat;
    background-position: 2px;
    padding-left: 25px !important;
}

table caption {
    text-align: center;
    font-weight: bold;
    padding: 3px;
    border: 1px solid #CCC;
    border-bottom: none;
    background-color: #F7F7F7;
}

table caption.captionSoloBorde {
    text-align: left;
    font-weight: normal;
    /*padding: 3px;
    border: 1px solid #CCC;
    border-bottom: none;
    background-color: #F7F7F7;*/
}

.nowrap {
    white-space: nowrap;
}

.caption {
    text-align: center;
    font-weight: bold;
    padding: 3px;
    background-color: #F7F7F7;
}

td, th {
    border: 1px solid #CCC;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    padding: 3px;
    font-size: 11px;
}

th {
    background-color: #CDF3FE;
    font-weight: bold;
}

table.sinBordes td {
    border: none;
}

table.conBordes td {
    border: 1px solid #CCC;
}

.centrado {
    margin: 0 auto;
}

input.botonSubmit {
    font-weight: bold;
}

input.inputText {
    font-family: "Courier New", Courier, mono;
    background-color: #FFEEA8;
    border: 1px solid #FFF;
    border-bottom: 1px dotted #000;
    padding: 3px;
    font-size: 12px;
}

input[type="text"], input[type="password"], textarea {
    font-family: "Courier New", Courier, mono;
    background-color: #FFEEA8;
    border: 1px solid #FFF;
    border-bottom: 1px dotted #000;
    padding: 3px;
    font-size: 12px;
}

input[type="text"]:focus, select:focus, textarea:focus {
    background-color: #FFFFCC;
}

input.readonly, input.disabled {
    background-color: #EBEBE4;
    color: #333;
}

input.readonly:focus, input.disabled:focus {
    background-color: #EBEBE4;
}

input.disabled {
    border: 1px solid #FFF;
}

input[readonly], input[type="text"][disabled], textarea[disabled] {
    background-color: #EBEBE4;
    color: #333;
}

input[readonly]:focus, input[type="text"][disabled]:focus {
    background-color: #EBEBE4;
}

input[type="text"][disabled] {
    border: 1px solid #FFF;
}

select {
    padding: 2px;
    background-color: #FFEEA8;
}

select[disabled] {
    background-color: #EBEBE4;
}

select.disabled {
    background-color: #EBEBE4;
}

iframe[frameborder="1"] {
    border: 1px solid silver;
}

.mensajeInfo {
    border-color: #336699;
    border-width: 1px;
    border-style: solid;
    background-color: #D1E8FC;
    padding: 5px 30px;
    text-align: center;
    background-image: url(../images/info-icon.png);
    background-position: 5px center;
    background-repeat: no-repeat;
    margin-bottom: 10px;
}

.mensajeOK {
    border-color: #2E6304;
    border-width: 1px;
    border-style: solid;
    background-color: #CCEDB0;
    padding: 5px 30px;
    text-align: center;
    background-image: url(../images/success-icon.png);
    background-position: 5px center;
    background-repeat: no-repeat;
    margin-bottom: 10px;
}

.mensajeAdvertencia {
    border-color: #FFEC00;
    border-width: 1px;
    border-style: solid;
    background-color: #FFFDD6;
    padding: 5px 30px;
    text-align: center;
    background-image: url(../images/warning-icon.png);
    background-position: 5px center;
    background-repeat: no-repeat;
    margin-bottom: 10px
}

.mensaje {
    border-width: 1px;
    border-style: solid;
    padding: 5px 30px;
    text-align: center;
    background-position: 5px center;
    background-repeat: no-repeat;
    margin-bottom: 10px
}

.mensaje.mensajeError {
    border-color: red;
    background-color: #FF2424;
    background-image: url(../images/warning-icon.png);
    color: white;
}

.menuSuperior {
    position: absolute;
    right: 0;
    /*width: 764px;*/
    width: 100%;
}

.barraSuperiorUsuario {
    /*position: absolute;*/
    position: relative;
    margin-top: 132px;
    /*top: 28px;*/
    /*right: 0;*/
    text-align: left;
    padding-left: 3px;
    color: #777;
    /*background-color: #eee;*/
    /*border-bottom: 1px solid #aaa;*/
    /*font-weight: bold;*/
}

.ajaxIndicator {
    display: inline-block;
    background-image: url(../images/cargando-circulo.gif);
    background-repeat: no-repeat;
    padding-left: 20px;
    height: 16px;
}

.indicadorPasos {
    font-family: monospace;
    font-size: 36px;
    font-weight: bold;
    color: #052E64;
}

.mensajeGrande {
    font-family: monospace;
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

.tituloAdvertencia {
    font-size: 14px;
    color: red;
    font-weight: bold;
}

table.listadoSolicitudes td.RECHAZADA {
    font-weight: bold;
    color: red;
}

table.listadoSolicitudes td.APROBADA {
    font-weight: bold;
    color: blue;
}

table.listadoSolicitudes tr.RECHAZADA td {
    background-color: #FFE1E1;
}

table.listadoSolicitudes tr.APROBADA td {
    /*background-color: #EFEFFD;*/
}

.trSeleccionada {
    background-color: #FFFFCC;
}

.leyenda {
    color: #666;
}

.subTituloDestacado {
    /*font-family: monospace;*/
    font-size: 16px;
    font-weight: bold;
    color: #052E64;
}

.negrita {
    font-weight: bold;
}

.tabSet li {
    font-weight: bold;
    font-size: 14px;
}

.tabSet div {
    background-color: #FFF;
}

td.destacada {
    background-color: #ede9e3;
    font-weight: bold;
    color: #052E64;
}

a.homeHeader{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 212px;
    height: 46px;
}

a.link {
    background-repeat: no-repeat;
    background-position: left;
    display: inline-block;
    padding-left: 20px;
    line-height: 20px;
}

a.link.linkLostPassword {
    background-image: url(../images/key-exclamation-16x16.png);
}

a.link.linkImprimir16x16 {
    background-image: url(../images/printer-icon.png);
}

a.link.linkPdf16x16 {
    background-image: url(../images/pdf-16x16.png);
}

a.link.linkClose16x16 {
    background-image: url(../images/close-16x16.png);
}

a.link.linkView16x16 {
    background-image: url(../images/view-16x16.png);
}

a.link.linkUpCuadrado16x16 {
    background-image: url(../images/up-cuadrado-16x16.png);
}

a.link.linkDownCuadrado16x16 {
    background-image: url(../images/down-cuadrado-16x16.png);
}

a.linkBoton {
    background-repeat: no-repeat;
    background-position: top center;
    display: inline-block;
    padding-top: 30px;
}

a.linkBoton.linkDownloadExcel {
    background-image: url(../images/excel-32x32.png);
}

a.linkHome {
    background-image: url(../images/icon-home.png);
    background-repeat: no-repeat;
    background-position: left;
    display: inline-block;
    padding-left: 20px;
    line-height: 20px;
}

a.linkVolver {
    background-image: url(../images/icon-previous.png);
    background-repeat: no-repeat;
    background-position: left;
    display: inline-block;
    padding-left: 20px;
    line-height: 20px;
}

a.linkLogin {
    background-image: url(../images/key-icon.png);
    background-repeat: no-repeat;
    background-position: left;
    display: inline-block;
    padding-left: 20px;
    line-height: 20px;
}

a.linkImprimir {
    background-image: url(../images/printer.png);
    background-repeat: no-repeat;
    background-position: top center;
    display: inline-block;
    padding-top: 30px;
}

a.linkDescargarPDF {
    background-image: url(../images/pdf-document.png);
    background-repeat: no-repeat;
    background-position: top center;
    display: inline-block;
    padding-top: 30px;
}

a.linkHelpBook {
    background-image: url(../images/help-book.png);
    background-repeat: no-repeat;
    background-position: top center;
    display: inline-block;
    padding-top: 30px;
}

.leyendaAnularCertificado {
    color: #990000;
    font-style: italic;
    font-weight: bold;
    font-size: 14px;
}

fieldset {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid silver;
    padding: 5px;
}

legend {
    font-weight: bold;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    padding: 3px 6px;
    border: 1px solid silver;
    /*font-family: monospace;*/
    color: #FF6600;
    /*color: #052E64;*/
    font-size: 11px;
    background-color: #F9F9F9;

}
.legendSinBorde {
    font-weight: bold;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    padding: 3px 6px;
    border: 0px solid silver;
    /*font-family: monospace;*/
    color: #FF6600;
    /*color: #052E64;*/
    font-size: 11px;
    /*background-color: #F9F9F9;*/
}

.dialogoOficinaPlantilla {
    border: 3px solid black;
    padding: 0;
    background-color: #fff;
}

.mensajeAtención {
    display: inline-block;
    background-image: url(../images/warning-32x32.png);
    background-position: 5px;
    background-repeat: no-repeat;
    border-top: 1px solid red;
    border-bottom: 1px solid red;
    padding-left: 45px;
    padding-right: 5px;
    font-size: 16px;
    font-weight: bold;
    color: red;
    line-height: 30px;
}

input.search {
    padding-left: 20px;
    background-repeat: no-repeat;
    background-image: url(../images/search-16x16.png);
    background-position: 2px;
}

.tipsyTable {
    border: none !important;
    color: #000;
    background-color: white;
    margin: -6px -8px -5px -8px;
    padding: 10px;
    background: rgba(232,242,255,1) !important;
}

table.zebra tr:nth-of-type(even):not(.not-zebra) {
    background-color: #f7f7f7;
}

table.hover tr:not(.not-hover):hover {
    background-color: #dfefff;
}

.blockUI.blockOverlay,
.blockUI.blockMsg {
    z-index: 1003 !important;
}
