/* CSS Document */
/* Estilos globales */
* { 
    border-style: none;
    border-color: inherit;
    border-width: 0;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
}
body, html{
	height:100%;
	font-size:12px;
	font-family:sans-serif;
	background-color:#FFF;
}
ul, li{
	display:block;
	list-style:none;	
}
a{
	text-decoration:none;
}
.btnGen {
    /* Parámetros generales */
    background-color:#ddd;
    color:#333;
    text-decoration:none;
    text-shadow: 0 1px 1px #FFF;
    /* Bordes redondenados - Border Radius */
    border:1px solid #ccc;    
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
	-ms-border-radius:4px;
	-o-border-radius:4px;
    border-radius:4px;
    /* Aplcamos sombras al boton - Box Shadow */
    -webkit-box-shadow:inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);
    -moz-box-shadow:inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow:inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);    
    /*Cursor*/
	cursor:pointer;
    /*Tamaño de letra*/
	font-size:13px;
	font-weight:bold;
    /*Alineación*/
    vertical-align: middle; /* align the text vertically centered */
    /*Fondo*/
    background-repeat: no-repeat, repeat;  /* make the background image appear only once */
    background-position: 8px 7px, 0px 0px;  /* equivalent to 'top left' */
    padding-left: 30px;     /* make text start to the right of the image */
    padding-right:10px;
    background-size:15px 15px, auto;
    height:30px;
    }
.btnGen:hover{
    border-color:#adcce2; /* Modificamos el color del borde */ 
    background-color:#FFF;/* Cambiamos los colores del fondo degradado */
    /* Modificamos las propiedades del Box Shadow para un efecto Glow */
    -webkit-box-shadow:inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 6px rgba(36, 168, 229, .3);
    -moz-box-shadow:inset 0 1px 0 rgba(251,247,193, .3), inset 0 0 0 1px rgba(251,247,193, .3), 0 1px 6px rgba(36, 168, 229, .3);
    box-shadow:inset 0 1px 0 rgba(251,247,193, .3), inset 0 0 0 1px rgba(251,247,193, .3), 0 1px 6px rgba(36, 168, 229, .3);
}
.btnGenSaved {
    /* Parámetros generales */
    background-color: #5cb85c;
    color: #fff;
    text-decoration: none;
    /*text-shadow: 0 1px 1px #FFF;*/
    /* Bordes redondenados - Border Radius */
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    /* Aplcamos sombras al boton - Box Shadow */
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);
    /*Cursor*/
    cursor: pointer;
    /*Tamaño de letra*/
    font-size: 13px;
    font-weight: bold;
    /*Alineación*/
    vertical-align: middle; /* align the text vertically centered */
    /*Fondo*/
    background-repeat: no-repeat, repeat; /* make the background image appear only once */
    background-position: 8px 7px, 0px 0px; /* equivalent to 'top left' */
    padding-left: 30px; /* make text start to the right of the image */
    padding-right: 10px;
    background-size: 15px 15px, auto;
    height: 30px;
}

    .btnGenSaved:hover {
        border-color: #398439; /* Modificamos el color del borde */
        background-color: #449d44; /* Cambiamos los colores del fondo degradado */
        /* Modificamos las propiedades del Box Shadow para un efecto Glow */
        -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 6px rgba(36, 168, 229, .3);
        -moz-box-shadow: inset 0 1px 0 rgba(251,247,193, .3), inset 0 0 0 1px rgba(251,247,193, .3), 0 1px 6px rgba(36, 168, 229, .3);
        box-shadow: inset 0 1px 0 rgba(251,247,193, .3), inset 0 0 0 1px rgba(251,247,193, .3), 0 1px 6px rgba(36, 168, 229, .3);
    }
.btnGenDefault {
    /* Parámetros generales */
    background-color: #fff;
    color: #333;
    text-decoration: none;
    text-shadow: 0 1px 1px #FFF;
    /* Bordes redondenados - Border Radius */
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    /* Aplcamos sombras al boton - Box Shadow */
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);
    /*Cursor*/
    cursor: pointer;
    /*Tamaño de letra*/
    font-size: 13px;
    font-weight: bold;
    /*Alineación*/
    vertical-align: middle; /* align the text vertically centered */
    /*Fondo*/
    background-repeat: no-repeat, repeat; /* make the background image appear only once */
    background-position: 8px 7px, 0px 0px; /* equivalent to 'top left' */
    padding-left: 30px; /* make text start to the right of the image */
    padding-right: 10px;
    background-size: 15px 15px, auto;
    height: 30px;
}

    .btnGenDefault:hover {
        border-color: #adadad; /* Modificamos el color del borde */
        background-color: #e6e6e6; /* Cambiamos los colores del fondo degradado */
        color: #333;
        /* Modificamos las propiedades del Box Shadow para un efecto Glow */
        -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 6px rgba(36, 168, 229, .3);
        -moz-box-shadow: inset 0 1px 0 rgba(251,247,193, .3), inset 0 0 0 1px rgba(251,247,193, .3), 0 1px 6px rgba(36, 168, 229, .3);
        box-shadow: inset 0 1px 0 rgba(251,247,193, .3), inset 0 0 0 1px rgba(251,247,193, .3), 0 1px 6px rgba(36, 168, 229, .3);
    }

.btnGenD {
    /* Parámetros generales */
    background-color: #ddd;
    color: #e4e4e4;
    text-decoration: none;
    text-shadow: 0 1px 1px #FFF;
    /* Bordes redondenados - Border Radius */
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    /* Aplcamos sombras al boton - Box Shadow */
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);
    /*Cursor*/
    cursor: pointer;
    /*Tamaño de letra*/
    font-size: 13px;
    font-weight: bold;
    /*Alineación*/
    vertical-align: middle; /* align the text vertically centered */
    /*Fondo*/
    background-repeat: no-repeat, repeat; /* make the background image appear only once */
    background-position: 8px 7px, 0px 0px; /* equivalent to 'top left' */
    padding-left: 30px; /* make text start to the right of the image */
    padding-right: 10px;
    background-size: 15px 15px, auto;
    height: 30px;
}
.btn-ico-inicio {
    background-image: url(../img/icoInicio.png), -webkit-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoInicio.png), -moz-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoInicio.png), -ms-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoInicio.png), -o-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoInicio.png), linear-gradient(top, #fefefe, #e5e5e5);  
}
.btn-ico-inicio:hover {
    background-image: url(../img/icoInicio.png), -webkit-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoInicio.png), -moz-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoInicio.png), -ms-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoInicio.png), -o-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoInicio.png), linear-gradient(top, #fefefe, #fff);  
}
.btn-ico-ver  {
    background-image: url(../img/icoVer.png), -webkit-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoVer.png), -moz-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoVer.png), -ms-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoVer.png), -o-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoVer.png), linear-gradient(top, #fefefe, #e5e5e5);  
}
.btn-ico-ver:hover  {
    background-image: url(../img/icoVer.png), -webkit-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoVer.png), -moz-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoVer.png), -ms-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoVer.png), -o-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoVer.png), linear-gradient(top, #fefefe, #fff);  
}
.btn-ico-nuevo {
    background-image: url(../img/icoNuevo.png), -webkit-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoNuevo.png), -moz-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoNuevo.png), -ms-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoNuevo.png), -o-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoNuevo.png), linear-gradient(top, #fefefe, #e5e5e5);  
}
.btn-ico-nuevo:hover {
    background-image: url(../img/icoNuevo.png), -webkit-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoNuevo.png), -moz-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoNuevo.png), -ms-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoNuevo.png), -o-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoNuevo.png), linear-gradient(top, #fefefe, #fff);  
}
.btn-ico-editar  {
    background-image: url(../img/icoEditar.png), -webkit-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoEditar.png), -moz-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoEditar.png), -ms-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoEditar.png), -o-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoEditar.png), linear-gradient(top, #fefefe, #e5e5e5);  
}
.btn-ico-editar:hover  {
    background-image: url(../img/icoEditar.png), -webkit-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoEditar.png), -moz-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoEditar.png), -ms-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoEditar.png), -o-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoEditar.png), linear-gradient(top, #fefefe, #fff);  
}
.btn-ico-eliminar   {
    background-image: url(../img/icoEliminar.png), -webkit-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoEliminar.png), -moz-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoEliminar.png), -ms-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoEliminar.png), -o-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoEliminar.png), linear-gradient(top, #fefefe, #e5e5e5);  
}
.btn-ico-eliminar:hover   {
    background-image: url(../img/icoEliminar.png), -webkit-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoEliminar.png), -moz-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoEliminar.png), -ms-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoEliminar.png), -o-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoEliminar.png), linear-gradient(top, #fefefe, #fff);  
}
.btn-ico-cancelar    {
    background-image: url(../img/icoCancelar.png), -webkit-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoCancelar.png), -moz-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoCancelar.png), -ms-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoCancelar.png), -o-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoCancelar.png), linear-gradient(top, #fefefe, #e5e5e5);  
}
.btn-ico-cancelar:hover    {
    background-image: url(../img/icoCancelar.png), -webkit-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoCancelar.png), -moz-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoCancelar.png), -ms-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoCancelar.png), -o-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoCancelar.png), linear-gradient(top, #fefefe, #fff);  
}
.btn-ico-guardar     {
    background-image: url(../img/icoGuardar.png), -webkit-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoGuardar.png), -moz-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoGuardar.png), -ms-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoGuardar.png), -o-linear-gradient(top, #fefefe, #e5e5e5);
    background-image: url(../img/icoGuardar.png), linear-gradient(top, #fefefe, #e5e5e5);  
}
.btn-ico-guardar:hover     {
    background-image: url(../img/icoGuardar.png), -webkit-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoGuardar.png), -moz-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoGuardar.png), -ms-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoGuardar.png), -o-linear-gradient(top, #fefefe, #fff);
    background-image: url(../img/icoGuardar.png), linear-gradient(top, #fefefe, #fff);  
}
.txtGen{
	width:100%;
	height:25px;
	padding:5px 10px 5px 10px;
	box-sizing: border-box;
	background-color:#fff;
	border:1px solid #ccc;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	-ms-border-radius:4px;
	-o-border-radius:4px;
	border-radius:4px;
	-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-moz-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-ms-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	font-size:12px;
	color:#000;
}
.txtGenD{
    width:100%;
	height:25px;
	padding:3px 10px 3px 10px;
	box-sizing: border-box;
	background-color:#ddd;
	border:1px solid #ccc;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	-ms-border-radius:4px;
	-o-border-radius:4px;
	border-radius:4px;
	-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-moz-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-ms-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	font-size:12px;
	color:#000;
}
.txtGen:focus{
	border-color:#66afe9;
	outline:0;
	-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 6px rgba(36, 168, 229, .3);
    -moz-box-shadow:inset 0 1px 0 rgba(251,247,193, .3), inset 0 0 0 1px rgba(251,247,193, .3), 0 1px 6px rgba(36, 168, 229, .3);
    -ms-box-shadow:inset 0 1px 0 rgba(251,247,193, .3), inset 0 0 0 1px rgba(251,247,193, .3), 0 1px 6px rgba(36, 168, 229, .3);
	-o-box-shadow:inset 0 1px 0 rgba(251,247,193, .3), inset 0 0 0 1px rgba(251,247,193, .3), 0 1px 6px rgba(36, 168, 229, .3);
	box-shadow:inset 0 1px 0 rgba(251,247,193, .3), inset 0 0 0 1px rgba(251,247,193, .3), 0 1px 6px rgba(36, 168, 229, .3);
}
/* Estilos de menú */
.dMenu{
	z-index:99;
	position:absolute;
	width:275px;
	left:-275px;
	height:100%;
	border-width:0 1px 0 0;
	border-style:solid;
	border-color:#CCC;
	background-color:#fff;
	visibility:hidden;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.dMenu-is-visible{
	visibility:visible;
	-webkit-transform: translate(275px,0px); 
	-moz-transform: translate(275px,0px); 
	-ms-transform: translate(275px,0px); 
	-o-transform: translate(275px,0px); 
	transform: translate(275px,0px); 
}
.dMenu .dCerrar{
	position:absolute;
	top:0px;
	right:0px;
}
.dMenu li{
	border-width:0 0 1px 0;
	border-style:solid;
	border-color:#CCC;
}
.dMenu li:hover{
	background-color:#F0B53E;
}
.dMenu li:hover td{
	color:#FFF;	
}
.dMenu .tTitMenu{
	width:100%;
	background: -webkit-linear-gradient(#00338D, #7C99C7);
	background: -moz-linear-gradient(#00338D, #7C99C7);
	background: -ms-linear-gradient(#00338D, #7C99C7);
	background: -o-linear-gradient(#00338D, #7C99C7);
	background: linear-gradient(#00338D, #7C99C7);
}
.dMenu .tTitMenu tr{
	height:50px;
}
.dMenu .tTitMenu td{
	font-size:18px;
	color:#FFF;
	font-weight:bold;
}
.dMenu .tMenu{
	width:100%;
}
.dMenu .tMenu tr{
	height:50px;
}
.dMenu .tMenu td{
	font-size:14px;
	color:#7D8083;
}
.dMenu .tMenu td:first-child{
	text-align:center;
}
.dMenu .tMenu td img{
    width:25px;
}
/* Estilos de cabecera */
.dCabecera{
	position:relative;
	width:100%;
	border-width:0 0 1px 0;
	border-style:solid;
	border-color:#CCC;
}
.dCabecera .tCabecera{
	width:100%;
	background:-webkit-linear-gradient(#00338D, #7C99C7);
	background:-moz-linear-gradient(#00338D, #7C99C7);
	background:-ms-linear-gradient(#00338D, #7C99C7);
	background:-o-linear-gradient(#00338D, #7C99C7);
	background:linear-gradient(#00338D, #7C99C7);
}
.dCabecera .tCabecera tr{
	height:50px;
}
.dCabecera .tCabecera td{
	color:#fff;
	font-size:16px;
	font-weight:bold;
}
.dCabecera .dUsuario{
	position:absolute;
	top:0px;
	right:10px;
}
.dCabecera .dUsuario table tr{
	height:50px;
}
.dCabecera .dUsuario table td{
	color:#fff;
	font-size:14px;
	font-weight:bold;
}
/* Estilos de parámetros de selección */
.dParam{
	position:relative;
	width:100%;
	border-width:1px 0 1px 0;
	border-style:solid;
	border-color:#CCC;
}
.dParam .dParamCab{
	position:relative;
	width:100%;
	height:45px;
	background-color:#F9F9F9;
}
.dParam .dParamCab p{
	line-height:45px;
	font-size:14px;
	color:#7D8083;
	font-weight:bold;
	text-align:center;
}
.dParam .dParamCab a{
	margin-left:10px;
}
.dParam .dParamCab .dParamCabIcon{
	position:absolute;
	top:0px;
	left:10px;
}
.dParam .dParamCab .dParamCabFilter{
	position:absolute;
	top:0px;
	right:10px;
}
.dParam .dParamCab .dParamCabIcon img,
.dParam .dParamCab .dParamCabFilter img{
	vertical-align:middle;
}
.dParamDet{
	display:none;
}
.dParamDet table{
	width:100%;
	padding: 20px;
}
.dParamDet table td{
	padding:5px 10px 5px 10px;
	font-size:15px;
	font-weight:500;
	color:#7F7F7F;
}
/* Estilos de contenido */
.dContenido{
	position:relative;
	width:100%;
/*	background-color:#0F0;*/
	overflow:hidden;
}
.dContTit{
	position:relative;
	width:100%;
	background-color:#E4E4E4;
	border-width:1px 1px 1px 1px;
	border-style:solid;
	border-color:#CCC;
}
.dContTit table{
	width:100%;
}
.dContTit table tr{
	height:35px;
}
.dContTit table td{
	text-align:center;
	font-size:16px;
	font-weight:bold;
    color:#7d8083;
}
.dContPri{
	float:left;
	width:100%;
/*	background-color:#F00;*/
}
.dContPriCue{
	position:relative;
	width:100%;
	margin-bottom:40px;
	border-width:0 1px 0 0;
	border-style:solid;
	border-color:#CCC;
	min-height:460px;
}
.dContPriCue .tContPriCue{
	width:100%;
	border-spacing:0;
}
.dContPriCue .tContPriCue tr:nth-child(even) {
  background-color: #F2F9FD;
}
.dContPriCue .tContPriCue tr:nth-child(odd) {
  background-color: #fff;
}
.dContPriCue .tContPriCue td{
	border-width:0 0 1px 0;
	border-style:solid;
	border-color:#ccc;
	padding:10px 20px 20px 20px;
}
.dContPriCue .tContPriCue .tContPriCueItem{
	width:100%;
	border-spacing:0;
}
.dContPriCue .tContPriCue .tContPriCueItem tr{
	background-color:transparent;
}
.dContPriCue .tContPriCue .tContPriCueItem td{
	border-width:0;
	padding:5px 5px 5px 5px;
	font-size:13px;
	color:#7F7F7F;
    width:33%;
}
.dContPriCue .tContPriCue .tContPriCueItem .tdResal{
	font-size:14px;
	color:#000;
	font-weight:bold;
}
.dContPriCue .tContPriCue .tContPriCueOpc{
	width:100%;
	border-spacing:0;
}
.dContPriCue .tContPriCue .tContPriCueOpc tr{
	background:none;
}
.dContPriCue .tContPriCue .tContPriCueOpc td{
	padding:2px;
	border:none;
	text-align:center;
}
.dContSec{
	float:right;
	width:50%;
/*	background-color:#FF0;*/
	display:none;
}
.dContSecCue{
	position:relative;
	width:100%;
	margin-bottom:40px;
	border-width:0 0 0 1px;
	border-style:solid;
	border-color:#CCC;
}
.dContSecCue table{
	width:100%;
	padding: 20px;
}
.dContSecCue table td{
	padding:5px 10px 5px 10px;
	font-size:15px;
	font-weight:500;
	color:#7F7F7F;
}
#filesAnt td{
    border:1px solid black;
}
/* Estilos de pie de página */
.dPie{	
	position: fixed; 
	bottom: 0px;
	width:100%;
	background-color:#988F86;
	height:40px;
	line-height:40px;
	text-align:right;
}
.dPie a{
	background:none;
	background-color:inherit;
	color:#fff;
	border-width:0px 1px 0px 1px;
	border-style:solid;
	border-color:#CCC;
	text-shadow:none;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	-ms-border-radius:0px;
	-o-border-radius:0px;
	border-radius:0px;
	-webkit-box-shadow:none;
	-moz-box-shadow:none;
	-ms-box-shadow:none;
	-o-box-shadow:none;
	box-shadow:none;
	padding:3px 15px 3px 15px;
	margin:0px;
}
.dPie a:hover{
	background:none;
	background-color:#F0B53E;
}
/* Mensajes */
.dMsjI, .dMsjE, .dMsjW, .dMsjS   {
	position:absolute;
	left:0;
	color:#555;
	border-radius:10px;
	font-family:Tahoma,Geneva,Arial,sans-serif;
	font-size:10px;
	padding: 0 20px 0 40px;
	margin:4px;
	line-height:30px;
}
.dMsjI span, .dMsjE span, .dMsjW span, .dMsjS span {
	font-weight:bold;
	text-transform:uppercase;
}
.dMsjI a, .dMsjE a, .dMsjW a, .dMsjS a {
	color:#000;
	border:none;
	background-color:transparent;
	cursor:pointer;
	font-weight:bold;
}
.dMsjI a:hover, .dMsjE a:hover, .dMsjW a:hover, .dMsjS a:hover {
	color:#F0B53E;
	background-color:transparent;
}
.dMsjE {
	background:#ffecec url('../img/icoMsjError.png') no-repeat 10px 50%;
	border:1px solid #f5aca6;
}
.dMsjS {
	background:#e9ffd9 url('../img/icoMsjSuccess.png') no-repeat 10px 50%;
	border:1px solid #a6ca8a;
}
.dMsjW {
	background:#fff8c4 url('../img/icoMsjWarning.png') no-repeat 10px 50%;
	border:1px solid #f2c779;
}
.dMsjI {
	background:#e3f7fc url('../img/icoMsjInfo.png') no-repeat 10px 50%;
	border:1px solid #8ed9f6;
}
/* Tabla de mensajes*/
.dMensajes {
    display:none;
}
.dMensajes table{
	width: 100%;
	color: #333;
	font-family: sans-serif;
	font-size: .9em;
	font-weight: 300;
	text-align: left;
	line-height: 40px;
	border-spacing: 0;
	border: 1px solid #428bca;
	margin: 20px auto;
}
.dMensajes thead tr:first-child{
	background: -webkit-linear-gradient(#2565A1, #2094CE);
	background: -moz-linear-gradient(#2565A1, #2094CE);
	background: -ms-linear-gradient(#2565A1, #2094CE);
	background: -o-linear-gradient(#2565A1, #2094CE);
	background: linear-gradient(#2565A1, #2094CE);
	color: #fff;
	border: none;
}
.dMensajes th{font-weight: bold;}
.dMensajes th:first-child, .dMensajes td:first-child {padding: 0 15px 0 20px;}
.dMensajes thead tr:last-child th {border-bottom: 2px solid #ddd;}
.dMensajes tbody tr:hover {background-color: #f0fbff;}
.dMensajes tbody tr:last-child td {border: none;}
.dMensajes tbody td {border-bottom: 1px solid #ddd;}
.dMensajes td:last-child {
	text-align: right;
	padding-right: 10px;
}
/* Tabla detalle anticipos y liquidaciones*/
.dAntiLiq table {
	width: 100%;
	color: #333;
	font-family: sans-serif;
	font-size: .9em;
	font-weight: 300;
	text-align: left;
	line-height: 20px;
	border-spacing: 0;
	border: 1px solid #428bca;
	margin: 20px auto;
}
.dAntiLiq thead tr:first-child {
	background: -webkit-linear-gradient(#2565A1, #2094CE);
	background: -moz-linear-gradient(#2565A1, #2094CE);
	background: -ms-linear-gradient(#2565A1, #2094CE);
	background: -o-linear-gradient(#2565A1, #2094CE);
	background: linear-gradient(#2565A1, #2094CE);
	color: #fff;
	border: none;
}
.dAntiLiq th {font-weight: bold; padding: 5px 5px 5px 5px;}
.dAntiLiq table td {padding: 5px 5px 5px 5px !important; text-align:center;}
.dAntiLiq th:first-child, .dAntiLiq td:first-child {text-align:left; padding-left:20px !important;}
.dAntiLiq th:last-child, .dAntiLiq td:last-child {text-align: right;	padding-right: 20px !important;}
.dAntiLiq thead tr:last-child th {border-bottom: 2px solid #ddd;}
.dAntiLiq tbody tr:hover {background-color: #f0fbff;}
.dAntiLiq tbody tr:last-child td {border: none;}
.dAntiLiq tbody td {border-bottom: 1px solid #ddd;}
/* Tabla detalle de gastos de liquidaciones*/
.tDetLiq {
    width: 100%;
    padding:10px;    
}
.tDetLiq  td{
    padding:5px;
}
.tDetLiq td table td{
    padding:0px;
}
.tDetLiq table {
    width: 100%;
}
.accDetLiq table {
	width: 100%;
	color: #333;
	font-family: sans-serif;
	font-size: .9em;
	font-weight: 300;
	text-align: left;
	line-height: 20px;
	border-spacing: 0;
	border: 1px solid #428bca;
	margin: 15px auto;
}
.accDetLiq thead tr:first-child {
	background: -webkit-linear-gradient(#2565A1, #2094CE);
	background: -moz-linear-gradient(#2565A1, #2094CE);
	background: -ms-linear-gradient(#2565A1, #2094CE);
	background: -o-linear-gradient(#2565A1, #2094CE);
	background: linear-gradient(#2565A1, #2094CE);
	color: #fff;
	border: none;
}
.accDetLiq th {font-weight: bold; padding: 5px 5px 5px 5px;}
.accDetLiq table td {padding: 5px 5px 5px 5px !important; text-align:center;}
.accDetLiq th:first-child, .dAntiLiq td:first-child {text-align:left; padding-left:20px !important;}
.accDetLiq th:last-child, .dAntiLiq td:last-child {text-align: right;	padding-right: 20px !important;}
.accDetLiq thead tr:last-child th {border-bottom: 2px solid #ddd;}
.accDetLiq tbody tr:hover {background-color: #f0fbff;}
.accDetLiq tbody tr:last-child td {border: none;}
.accDetLiq tbody td {border-bottom: 1px solid #ddd;}
/* Ventana modal de gastos de liquidaciones */
.dGastoDetFondoModal{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index:1001;
    -webkit-opacity: 0.75;
    -moz-opacity: 0.75;
    -ms-opacity: 0.75;
    -o-opacity: 0.75;
    opacity:.75;    
    filter: alpha(opacity=75);
}
.dGastoDet {
     display: none;
     position: absolute;
     border-radius: 10px;
     top: 25%;
     left: 25%;
     width: 50%;
     height: 40%;
     padding: 16px;
     background: #fff;
     color: #333;
     z-index:1002;
     overflow: auto;
}
.dGastoDet table{
    width:100%;
    padding:5px;
}
.dGastoDet table td{
    padding:5px;
}
.dGastoDet .dGastoDet-tit{
    font-size:15px;
    font-weight:bold;
}
/* Tabla de administración */
.dAdmin table {
	width: 100%;
	color: #333;
	font-family: sans-serif;
	font-size: .9em;
	font-weight: 300;
	text-align: center;
	border-spacing: 0;
	border: 1px solid #428bca;
}
.dAdmin table tr:first-child {
	background: -webkit-linear-gradient(#00338D, #7C99C7);
	background: -moz-linear-gradient(#00338D, #7C99C7);
	background: -ms-linear-gradient(#00338D, #7C99C7);
	background: -o-linear-gradient(#00338D, #7C99C7);
	background: linear-gradient(#00338D, #7C99C7);
	color: #fff;
	border: none;
    line-height:40px;
}
    .dAdmin2 table tr:nth-child(2) {
        background: -webkit-linear-gradient(#00338D, #7C99C7);
        background: -moz-linear-gradient(#00338D, #7C99C7);
        background: -ms-linear-gradient(#00338D, #7C99C7);
        background: -o-linear-gradient(#00338D, #7C99C7);
        background: linear-gradient(#00338D, #7C99C7);
        color: #fff;
        border: none;
    }
.customcell {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
.dAdmin table tr th {font-weight: bold;}
.dAdmin table tr th:first-child, .dAdmin tr td:first-child{
    padding: 0 15px 0 20px;
    text-align:left;
}

    .dAdmin2 table tr th:nth-child(2) {
        padding: 0 15px 0 20px;
        text-align: left;
    }
.dAdmin table tbody tr:hover {background-color: #f0fbff;}
.dAdmin table tbody tr:last-child td {border: none;}
.dAdmin table tbody td {
    border-bottom: 1px solid #ddd;
    padding:2px 10px 2px 10px;
}
.dAdmin table td table {
    border:none !important;
    width:auto;
}
.dAdmin table td table tr {
    background:none !important;
    color:#00338D !important;
}
.dAdmin table td table tr td{
    padding:5px !important;
}
.centerHeaderText{
    text-align: center !important;
}
.linkarea {
    cursor:pointer;
}
.dAdmin {
    width:130%;
}
.tooltip {
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted black;
}

	.tooltip .tooltiptext {
		visibility: hidden;
		width: 120px;
		background-color: #555;
		color: #fff;
		text-align: center;
		border-radius: 6px;
		padding: 5px 0;
		position: absolute;
		z-index: 1;
		bottom: 125%;
		left: 50%;
		margin-left: -60px;
		opacity: 0;
		transition: opacity 0.3s;
	}

		.tooltip .tooltiptext::after {
			content: "";
			position: absolute;
			top: 100%;
			left: 50%;
			margin-left: -5px;
			border-width: 5px;
			border-style: solid;
			border-color: #555 transparent transparent transparent;
		}

	.tooltip:hover .tooltiptext {
		visibility: visible;
		opacity: 1;
	}