@charset "utf-8";

/* CSS DOCUMENT ---------------------------- */

* {
	margin: 0;
	padding: 0;
}


body{
	background: #f8f8f8;
}

/* ESTILO LINKS ---------------------------- */

a:link {
	color: #ea5e02;
	text-decoration: none;
	
}
a:visited {
	text-decoration: none;
	color: #ea5e02;
}
a:hover {
	text-decoration: underline;
}
a:active {
	text-decoration: none;
	color: #ea5e02;
}

.linkLogin:link {
	color: #333;
	text-decoration: none;
	
}
.linkLogin:visited {
	text-decoration: none;
	color: #333;
}
.linkLogin:hover {
	text-decoration: underline;
	color: #666;
}
.linkLogin:active {
	text-decoration: none;
	color: #333;
}

/* ESTILOS EN TEXTO ------------------------ */

h1 {
	font-family: "Arial";
	font-size: 47px; 
	color: #FFF;
	line-height: 55px;
}

.txt {
	font-family: "Arial";
	font-size: 23px;
	color:#39393b;
	line-height: 35px;
}

/* ESTILO CAMPOS --------------------------- */

.txtBox { 
	width: 460px;
	height: auto; 
	padding: 3px 5px 3px 5px; 
	border-top: 1px solid #a9a9a9;  
	border-left: 1px solid #a9a9a9;  
	border-right: 1px solid #c7c7c7;
	border-bottom: 1px solid #c7c7c7;

	font-family: "Arial";
	color: #212121;
    font-size: 12px; 
    
	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

    background:#FFFFFF;

} 
 
.txtBox:focus { 
    outline: none; 
	/*border-radius: 0px; 
    border: 1px solid #CCCCCC;
	box-shadow: 0px 0px 8px #666; 
    -moz-box-shadow: 0px 0px 8px #666; 
    -webkit-box-shadow: 0px 0px 8px #666;*/ 
} 

::-webkit-input-placeholder { 
	font-family: "Arial";
	color:#d1d1d1;
	font-size: 12px;
} /* WebKit */

:-moz-placeholder { 
	font-family: "Arial";
	color:#d1d1d1;
	font-size: 12px;
} /* Firefox 18- */

::-moz-placeholder { 
	font-family: "Arial";
	color:#d1d1d1;
	font-size: 12px;
} /* Firefox 19+ */

:-ms-input-placeholder {
	font-family: "Arial";
	color:#d1d1d1;
	font-size: 12px; 
} /* IE 10+ */


/* ESTILO BOTON SUBMIT --------------------- */

.button {
	width: auto;
	height: auto;
	padding: 5px 25px 5px 25px;

	border-top: 1px solid #ed6509;
	border-left: 1px solid #ed6509;
	border-bottom: 1px solid #9f4501;
	border-right: 1px solid #9f4501;

	position: relative;
	display: inline-block;

	font-family: "Arial";
	font-size: 12px;
	color: #FFF;
	text-align: center;
	outline: none;

	cursor: pointer;

	background: linear-gradient( 0deg, #f56c0f, #fea744);
}

.button:hover {
    background: linear-gradient( 0deg,#fea744 , #f56c0f);
}

.buttonhold {
	width: auto;
	height: auto;
	padding: 5px 25px 5px 25px;

	border-top: 1px solid #ed6509;
	border-left: 1px solid #ed6509;
	border-bottom: 1px solid #9f4501;
	border-right: 1px solid #9f4501;

	position: relative;
	display: inline-block;

	font-family: "Arial";
	font-size: 12px;
	color: #FFF;
	text-align: center;
	outline: none;

	background: linear-gradient( 0deg, #fea744, #f56c0f);
}

.buttonlogin {
	width: 100%;
	height: auto;
	margin-top: 20px;
    padding: 10px 0px 2px 0px;
    border-radius: 20px;
    border: 0;
	
	font-family: "Arial";
	font-size: 12px;
	color: #FFF;
	text-align: center;
	cursor: pointer;
	outline: none;

	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

	background: #ff1011; 
	/*background: linear-gradient( 0deg, #000, #333);*/
}

.buttonlogin:hover {
    /*outline: none;
    background: #191919;
	color:#FFF;*/

	box-shadow: 0px 0px 8px #FFF; 
    -moz-box-shadow: 0px 0px 8px #FFF; 
    -webkit-box-shadow: 0px 0px 8px #FFF;
}

.buttonback {
	width: auto;
	height: auto;
	padding: 5px 25px 5px 25px;

	border-top: 1px solid #cbcbcb;
	border-left: 1px solid #cbcbcb;
	border-bottom: 1px solid #a9a9a9;
	border-right: 1px solid #a9a9a9;

	position: relative;
	margin: 0 auto;

	font-family: "Arial";
	font-weight: bold;
	font-size: 12px;
	color: #333;
	text-align: center;

	cursor: pointer;

	background: linear-gradient( 0deg, #d7d7d7, #fdfdfd);
}

.buttonback:hover {
	outline: none;
    background: linear-gradient( 0deg, #fdfdfd, #d7d7d7);
}

.btnsubmit {
	width: auto;
	height: auto;
	border: 0;

	font-family: "Arial";
	font-size: 12px;
	color: #ea5e02;
	text-align: center;

	cursor: pointer;
	outline: none;

	background: none;
}

.btnsubmit:hover {
	outline: none;
    text-decoration: underline;
}

/* CAJA LOGIN ----------------------------------- */

.imagenLogin {
	width: 200px;
	height: auto;

	text-align: center;
	
	margin-top: 100px;
	margin-bottom: 10px;

	left: 50%;
	margin-left: -75px;
	position: relative;

	border: 0px solid #d8d8d8;
}

.imagenLogin img {
	width: 100%;
	height: 0px;
}

.Login {
	width: 300px;
	height: auto;
	padding: 40px 25px 28px 25px;
	margin-top: 150px;
	margin-left: 62%;

	position: relative;
	display: inline-block;
	box-sizing: border-box;
	/*overflow: hidden;*/

	border-radius: 20px;
	background: #272727;

	-webkit-box-shadow: 0px 0px 10px -1px rgba(0,0,0,0.14);
    -moz-box-shadow: 0px 0px 10px -1px rgba(0,0,0,0.14);
    box-shadow: 0px 0px 10px -1px rgba(0,0,0,0.14);
}

.cajaLoginForm {
	width: 100%;
	height: auto;

	float: left;
	box-sizing: border-box;

	font-family: "Arial";
    font-size: 12px;
    color: #FFF;
    text-align: center;

	/*border: 1px solid #d8d8d8;*/
}

.cajaFirmaLogin {
	width: 100%;
	height: auto;
	padding: 0px 10px 0px 10px;

	position: absolute;
	left: 0;
	bottom: -25px;
	box-sizing: border-box;

	font-family: "Arial";
    font-size: 12px;
    color: #333;
    text-align: right;

    /*border-top: 1px solid #d8d8d8;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
	background: #333;*/

	/*border: 1px solid #FF0000;*/
}

.txtLogin { 
    border: 1px solid #CCCCCC; 
	width: 100%; 
	height: 50px;
	margin: 10px 0px 10px 0px;
    padding: 4px 10px 4px 10px; 
    border-radius: 15px; 
    box-sizing: border-box;

    font-family: "Arial";
    font-size: 14px; 
    color: #333;

	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

    background: #FFF;
    /*background: linear-gradient( 0deg, #EEE, #e2e0e0);*/
} 
 
.txtLogin:focus { 
    outline: none; 
    border: 1px solid #CCC; 

    box-shadow: 0px 0px 8px #CCC; 
    -moz-box-shadow: 0px 0px 8px #CCC; 
    -webkit-box-shadow: 0px 0px 8px #CCC; 
} 

.etiquetaLogin {
	width: 300px;
	height: auto;

	position: absolute;
	left: 50%;
    top: -35%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
	box-sizing: border-box;
	display: none;
}

.etiquetaLogin img {
	width: auto;
	height: auto;
}

/* CONTENEDOR ----------------------------------- */

#contenedor {
	width: 99.99%;
	height: auto;
	min-height: 100vh;
	text-align: center;
	
	float: left;
	box-sizing: border-box;

	/*border: 1px solid #FF0000;*/
}

#contlogin {
	width: 100%;
	height: 100vh;
	text-align: center;
	
	float: left;
	box-sizing: border-box;

	background: url(../images/banner/bgnew.jpg); 
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;

	/*border: 1px solid #FF0000;*/
}

/* SECCION ---------------------------------- */

section { 
	width: 100%;
	height: auto;
	padding: 0px 35px 0px 35px;
	text-align: center;

	position: relative;
	display: inline-block;
	box-sizing: border-box;

	background: #FFF;
	/*border: 1px solid #FF0000;*/
}

header { 
	width: 100%;
	height: 90px;
	padding: 0px 35px 0px 35px;
	text-align: left;

	position: relative;
	display: inline-block;
	box-sizing: border-box;

	background: linear-gradient( 0deg, #000, #333);
}

header img { 
	width: auto;
	height: 65px;
	margin-top: 12px;
}

header p {
	font-family: "Arial";
    font-size: 12px; 
    color: #FFF;
    text-align: center;

    position: absolute;
    top: 20px;
    right: 25px;
}

.menu { 
	width: 100%;
	height: 35px;
	padding: 0px 35px 0px 35px;

	position: relative;
	display: inline-block;
	box-sizing: border-box;

	background: #333;
	-webkit-box-shadow: inset 0px -31px 19px -33px rgba(0,0,0,1);
    -moz-box-shadow: inset 0px -31px 19px -33px rgba(0,0,0,1);
    box-shadow: inset 0px -31px 19px -33px rgba(0,0,0,1);
}

.btnmenu { 
	width: auto;
	height: auto;
	padding: 9.5px 20px 9.5px 20px;

	font-family: "Arial";
    font-size: 14px; 
    color: #FFF;
    text-align: center;

	float: left;
	box-sizing: border-box;
	cursor: pointer;

    border-right: 1px solid transparent;
    -moz-border-image: -moz-linear-gradient(top, #666e73 0%, #c3c3c3 100%);
    -webkit-border-image: -webkit-linear-gradient(top, #666e73 0%, #c3c3c3 100%);
    border-image: linear-gradient(to bottom, #333 25%, #999 100%);
    border-image-slice: 1;
}

.btnmenu:hover { 
	-webkit-box-shadow: inset 0px 35px 19px -36px rgba(0,0,0,1);
    -moz-box-shadow: inset 0px 35px 19px -36px rgba(0,0,0,1);
    box-shadow: inset 0px 35px 19px -36px rgba(0,0,0,1);

	background: linear-gradient( 0deg, #ff941d, #ff4f00);

	border-right: 1px solid transparent;
    -moz-border-image: -moz-linear-gradient(top, #4b1400 0%, #ff941d 100%);
    -webkit-border-image: -webkit-linear-gradient(top, #4b1400 0%, #ff941d 100%);
    border-image: linear-gradient(to bottom, #4b1400 0%, #ff941d 100%);
    border-image-slice: 1;
}

.btnmenuhover { 
	width: auto;
	height: auto;
	padding: 9.5px 20px 9.5px 20px;

	font-family: "Arial";
    font-size: 14px; 
    color: #FFF;
    text-align: center;

	float: left;
	box-sizing: border-box;
	cursor: pointer;

    -webkit-box-shadow: inset 0px 35px 19px -36px rgba(0,0,0,1);
    -moz-box-shadow: inset 0px 35px 19px -36px rgba(0,0,0,1);
    box-shadow: inset 0px 35px 19px -36px rgba(0,0,0,1);

	background: linear-gradient( 0deg, #ff941d, #ff4f00);

	border-right: 1px solid transparent;
    -moz-border-image: -moz-linear-gradient(top, #4b1400 0%, #ff941d 100%);
    -webkit-border-image: -webkit-linear-gradient(top, #4b1400 0%, #ff941d 100%);
    border-image: linear-gradient(to bottom, #4b1400 0%, #ff941d 100%);
    border-image-slice: 1;
}

.titseccion { 
	width: 100%;
	height: auto;
	padding: 30px 0px 25px 0px;
	margin-bottom: 20px;

	font-family: "Arial";
	font-weight: bolder;
    font-size: 18px; 
    color: #ea5e02;
    text-align: left;

	position: relative;
	display: inline-block;
	box-sizing: border-box;

	-webkit-box-shadow: inset 0px -4px 0px 0px #CCC;
	-moz-box-shadow: inset 0px -4px 0px 0px #CCC;
	box-shadow: inset 0px -4px 0px 0px #CCC;

	/*border: 1px solid #FF0000;*/
}


/* REGISTROS ---------------------------------- */

.marcoregistros {
	width: 100%;
	height: auto;
    border-left: 1px solid #CCC;
    border-right: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
}

.contregistros_1 {       background: #f6f6f6; }
.contregistros_1:hover { background: #fcf5dc;}
.contregistros_2 {       background: #FFF; }
.contregistros_2:hover { background: #fcf5dc; }

.registros {
	padding: 5px;

	font-family: "Arial";
    font-size: 12px; 
    color: #333;
    text-align: left;
    border-top: 1px solid #CCC;
    border-right: 1px solid #CCC;
}

.cajabotones {
	width: 100%;
	height: 32px;
	padding: 2.5px 3px 3px 0px;

	border-top: 1px solid #CCC;
	border-left: 1px solid #CCC;
	border-right: 1px solid #CCC;
	border-bottom: 0;

	position: relative;
	float: left;
	box-sizing: border-box;

	background: url('../images/bg-caja-botones.png');

	/*border: 1px solid #FF0000;*/
}

.cajapaginacion {
	width: auto;
	height: auto;
	margin-top: 6px;

	font-family: "Arial";
    font-size: 12px; 
    color: #333;
    text-align: left;

    position: relative;
	float: left;
	box-sizing: border-box;

	/*border: 1px solid #FF0000;*/
}

.cajapaginacion img {
	width: auto;
	height: auto;
	position: absolute;
	top: 0;
}

/* DETALLE REGISTROS -------------------------- */

.menulateralizq {
	width: 17%;
	height: 70vh;

	float: left;
	box-sizing: border-box;

	border-right: 1px solid #CCC;
}

.btnmenulateral { 
	width: 100%;
	height: auto;
	padding: 7px 0px 7px 10px;

	font-family: "Arial";
    font-size: 14px; 
    color: #333;
    text-align: left;

	float: left;
	box-sizing: border-box;
	cursor: pointer;

	border-bottom-style: dashed;
	border-bottom-width: 1px; 
	border-color: #CCC;
}

.btnmenulateral:hover { 
	font-weight: bold;
	background: #e6efef;
}

.btnmenulateralhover { 
	font-weight: bold;
	background: #e6efef;
}

.contformulario {
	width: 81%;
	height: auto;
	padding: 50px 15px 20px 15px;

	position: relative;
	float: right;
	box-sizing: border-box;

	border: 1px solid #CCC;
	background: #fafafa;
}

.titformulario {
	width: 100%;
	height: auto;
	padding: 6px 0px 6px 15px;

	font-family: "Arial";
	font-weight: bold;
    font-size: 14px; 
    color: #FFF;
    text-align: left;

	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;

	background: #6f8891;
}

.inputformulario {
	width: 100%;
	height: auto;
	padding: 3.5px 0px 3.5px 0px;
	margin-bottom: 10px;

	font-family: "Arial";
    font-size: 13px; 
    color: #333;
    text-align: left;

	position: relative;
	float: left;
	box-sizing: border-box;

	/*border-bottom: 1px solid #CCC;*/
}



.inputformulario input {
	position: absolute;
	top: 0;
	left: 210px;
	box-sizing: border-box;
}

.categorias{

	width: 100%;
	height: auto;
	padding: 3.5px 0px 3.5px 0px;
	margin-bottom: 10px;

	font-family: "Arial";
    font-size: 13px; 
    color: #333;
    text-align: left;

	position: relative;
	float: left;
	box-sizing: border-box;

	/**/border-bottom: 1px solid red;

}

.inputformulario select {
	position: absolute;
	top: 0;
	left: 210px;
	box-sizing: border-box;
}

.inputformulario textarea {
	position: absolute;
	top: 0;
	left: 210px;
	box-sizing: border-box;
}

/* CAJA IMPORTAR EXPORTAR ---------------------------------- */

.cajaimpexp {
	width: 230px;
	height: auto;
	padding: 20px;

	font-family: "Arial";
    font-size: 12px; 
    color: #333;
    text-align: center;

	position: absolute;
	top: 38px;
	right: 169px;
	box-sizing: border-box;
	z-index: 1;

	border: 1px solid #CCC;
	background: #FFF;
}

.cajaimpexp img {
	width: 20px;
	height: auto;

	position: absolute;
	top: -7.5px;
	right: 10px;
}

.btncloseimpexp {
	width: auto;
	height: auto;
	margin-bottom: 10px;

	font-size: 20px; 
	font-weight: bold;
    color: #333;
    text-align: right;

    position: absolute;
    top: 3px;
    right: 14px;

    cursor: pointer;

	/*border: 1px solid #FF0000;*/
}

.btncloseimpexp:hover {
	color: #d1460b;
}

/* CAJA AVISO INFORMACION ---------------------------------- */

.cajainformacion {
	width: 380px; 
	height: auto; 
	padding: 13px; 
	text-align: left;
	font-size: 14px;
	box-sizing: border-box;

	top: -85px; 
	right: -20px;
	position: absolute; 
	background: #f9ffda; 
	border: 1px solid #CCC;
	display: none;

	-webkit-box-shadow: 10px 10px 0px -7px rgba(0,0,0,0.16);
    -moz-box-shadow: 10px 10px 0px -7px rgba(0,0,0,0.16);
    box-shadow: 10px 10px 0px -7px rgba(0,0,0,0.16);
}

/* FOOTER-------------------------- */

footer {
	width: 100%;
	height: 10vh;
	padding: 0px 0px 0px 0px;

	font-family: "Arial";
    font-size: 12px; 
    color: #333;
    text-align: center;

	position: relative;
	float: left;
	box-sizing: border-box;

	border-top: #8b8b8b;
	-webkit-box-shadow: inset -1px 7px 10px -7px rgba(0,0,0,0.75);
    -moz-box-shadow: inset -1px 7px 10px -7px rgba(0,0,0,0.75);
    box-shadow: inset -1px 7px 10px -7px rgba(0,0,0,0.75);

    background: rgba(229,229,229,1);
    background: -moz-linear-gradient(top, rgba(229,229,229,1) 0%, rgba(248,248,248,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(229,229,229,1)), color-stop(100%, rgba(248,248,248,1)));
    background: -webkit-linear-gradient(top, rgba(229,229,229,1) 0%, rgba(248,248,248,1) 100%);
    background: -o-linear-gradient(top, rgba(229,229,229,1) 0%, rgba(248,248,248,1) 100%);
    background: -ms-linear-gradient(top, rgba(229,229,229,1) 0%, rgba(248,248,248,1) 100%);
    background: linear-gradient(to bottom, rgba(229,229,229,1) 0%, rgba(248,248,248,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e5e5', endColorstr='#f8f8f8', GradientType=0 );

    /*border: 1px solid #FF0000;*/
}

footer p {
	width: auto;
	height: auto;

    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);

    /*border: 1px solid #FF0000;*/
}

footer img {
	width: auto;
	height: 45px;

    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);

    /*border: 1px solid #FF0000;*/
}