<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
body {
	margin: 0 !important;
    padding: 0 !important;
	font-size:16px;
	font-family:Helvetica, Arial, sans-serif;
	min-width:420px;
	color:#FFFFFF;
	background-color: #000000;
	text-align: center;
	font-style: italic;
}


p, span{
	font-size:1.0em;
	line-height: 0.05em;
}

a:link{text-decoration:none; color:#FFFFFF;} 
a:visited{text-decoration:none; color:#FFFFFF;} 
a:hover{text-decoration:none; color:#a2ab2e;}
#idioma{
	position: absolute; top:0px; right: 0px; left:0px; padding: 10px; background-color: #000000; opacity: .7; text-align: right; font-size: 1em; font-style: normal; font-weight: bold;
}



#contenedor{
	position:absolute;
	display: inline-block;
	width:100%;
	height: 100%;
	left:0px; right:0px;
	max-width: 1650px;
	margin:auto;
}
#contenedor_imagen{
	position:absolute;
	width:100%;
	height: 100%;
	left:0px; right:0px;
	max-width: 1650px;
	margin:auto;
	background-image:url('../images/hd-res/login_back.jpg');
	
	background-repeat:no-repeat;
	-webkit-background-size:cover;
	-moz-background-size:cover;
	-o-background-size:cover;
	background-size:cover;
	background-position:center;
}
.inputs {
	display: inline-block;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	padding: 10px 20px;
	border: 1px solid #b7b7b7;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	font-size: 1em;
	color: rgba(255,255,255,1);
	-o-text-overflow: clip;
	text-overflow: clip;
	background: #a2ab2e;
	-webkit-box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) inset;
	box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2) inset;

	-webkit-transition: all 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
	-moz-transition: all 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
	-o-transition: all 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: all 200ms cubic-bezier(0.215, 0.61, 0.355, 1);
	height: 20px;
	width: 72%;

}

.inputs:focus {
	color: rgba(0,0,0,1);
	background: #ffffff;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #FFFFFF;
    opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #FFFFFF;
}
::-ms-input-placeholder { /* Microsoft Edge */
    color: #FFFFFF;
}

.boton {
	-webkit-border-radius: 25;
	-moz-border-radius: 25;
	border-radius: 25px;
	color: #000000;
	background: #e8e8e8;
	padding: 9px 15px 9px 15px;
	text-decoration: none;
	cursor: pointer;
	margin-bottom: 6px;
	font-size: 0.9em;
	font-style: italic;
	font-weight: bold;
}
.boton:hover {
	background: #a2ab2e;
	text-decoration: none;
	color: #FFFFFF;
}

.overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 500ms;
	visibility: hidden;
	opacity: 0;
	z-index: 1000;
}
.overlay:target {
	visibility: visible;
	opacity: 1;
}

.popup {
	margin: 70px auto;
	padding: 20px;
	background: #a2ab2e;
	border-radius: 5px;
	border:1px solid #000000;
	width: 35%;
	bottom:42%;
	left:33.5%;
	position: absolute;
	transition: all 5s ease-in-out;
}
.popup h2 {
	margin-top: 0;
	font-style: normal;
	font-weight: bold;
	color:#000000;
}
.popup .close {
	position: absolute;
	top: 20px;
	right: 30px;
	transition: all 200ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #000000;
}
.popup .close:hover {
	color: #000000;
}
.popup .content {
	max-height: 50%;
	overflow: auto;
	color: #000000;
	font-style: normal;
}

.control {
	display: block;
	position: relative;
	padding-left: 45px;
	margin-bottom: 12px;
	padding-top: 9px;
	cursor: pointer;
	font-size: 1em;
}
.control input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.control_indicator {
	position: absolute;
	top: 3px;
	left: 0;
	height: 30px;
	width: 30px;
	background: #a2ab2e;
	border: 2px solid #b2bd33;
}

.control:hover input ~ .control_indicator,
.control input:focus ~ .control_indicator {
	background: #a2ab2e;
}
        
.control input:checked ~ .control_indicator {
	background: #a2ab2e;
}
.control:hover input:not([disabled]):checked ~ .control_indicator,
.control input:checked:focus ~ .control_indicator {
	background: #a2ab2e;
}
.control input:disabled ~ .control_indicator {
	background: #e6e6e6;
	opacity: 0.6;
	pointer-events: none;
}
.control_indicator:after {
	box-sizing: unset;
	content: '';
	position: absolute;
	display: none;
}
.control input:checked ~ .control_indicator:after {
	display: block;
}
.control-checkbox .control_indicator:after {
	left: 10px;
	top: 4px;
	width: 4px;
	height: 14px;
	border: solid #ffffff;
	border-width: 0 4px 4px 0;
	transform: rotate(45deg);
}
.control-checkbox input:disabled ~ .control_indicator:after {
	border-color: #7b7b7b;
}



#login_footer{
	position: absolute; bottom: 100px; left: 0px; right: 0px;
}
.login_contenedor {
	height: 73px;
}
.login_contenedor:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
.login_contenedor_bloque {
	display: inline-block;
	vertical-align: middle;
	text-align: left;
	position: absolute;
}

#login_logo{
	width: 230px; height: 73px;
}


#login_bloque_logo{
	left: 15%; width: 22%;
}
#login_bloque_usuario{
	left: 37%; width: 14%; padding-top: 4px;
}
#login_bloque_pass{
	left: 51%; width: 14.5%; padding-top: 4px;
}
#login_bloque_boton{
	left: 65.5%; width: 14.5%; padding-top: 20px;
}
#login_bloque_recordar{
	left: 80%; width: 20%; padding-top: 23px;
}








/* RESPONSIVE
   ========================================================================= */
/* smartphones SIEMPRE EN VERTICAL */
@media (min-width: 1px) and (max-width: 480px) {
	#idioma{
		padding: 5px; font-size: 0.6em;
	}
	#contenedor_imagen{
		position:absolute;
		width:auto;
		height: 273px;
		top:0px;
		right: 0px;
		background-image:url('../images/low-res/login_back.jpg');
	}
	#login_footer{
		position: absolute; top:250px; bottom: 0px; left: 0px; right: 0px;
	}
	.login_contenedor_bloque {
		display: block;
		text-align: center;
		position: relative;
	}
	#login_bloque_logo{
		left: 0%; width: 100%;
	}
	#login_bloque_usuario{
		left: 0%; width: 100%; padding-top: 25px;
	}
	#login_bloque_pass{
		left: 0%; width: 100%; padding-top: 25px;
	}
	#login_bloque_boton{
		left: 0%; width: 100%; padding-top: 40px;
	}
	#login_bloque_recordar{
		left: 0%; width: 100%; padding-top: 25px;
	}
	.popup {
		width: 65%;
		bottom:40%;
		left:19%;
	}
	.popup h2 {
		font-size: 1.1em;
	}
	.control {
		padding-left: 33px;
		margin-bottom: 6px;
		font-size: 0.9em;
	}
	.control_indicator {
		top: 6px;
		left: 35%;
		height: 25px;
		width: 25px;
	}
	.control-checkbox .control_indicator:after {
		left: 7px;
		top: 1px;
		width: 3px;
	}
	.inputs {
		width: 190px;
	}
}
 
/* TABLET VERTICAL (MID)*/
@media (min-width: 481px) and (max-width: 760px) and (orientation:portrait)  {
	#idioma{
		padding: 5px; font-size: 0.9em;
	}
	#contenedor_imagen{
		position:absolute;
		width:auto;
		height: 428px;
		top:0px;
		right: 0px;
		background-image:url('../images/mid-res/login_back.jpg');
	}
	#login_footer{
		position: absolute; top:428px; bottom: 0px; left: 0px; right: 0px;
	}
	.login_contenedor_bloque {
		display: block;
		text-align: center;
		position: relative;
	}
	#login_bloque_logo{
		left: 0%; width: 100%;
	}
	#login_bloque_usuario{
		left: 0%; width: 100%; padding-top: 25px;
	}
	#login_bloque_pass{
		left: 0%; width: 100%; padding-top: 25px;
	}
	#login_bloque_boton{
		left: 0%; width: 100%; padding-top: 40px;
	}
	#login_bloque_recordar{
		left: 0%; width: 100%; padding-top: 25px;
	}
	.popup {
		width: 65%;
		bottom:40%;
		left:20%;
	}
	.popup h2 {
		font-size: 1.1em;
	}
	
	.control {
		padding-left: 33px;
		margin-bottom: 6px;
		font-size: 0.9em;
	}
	.control_indicator {
		top: 6px;
		left: 40%;
		height: 25px;
		width: 25px;
	}
	.control-checkbox .control_indicator:after {
		left: 7px;
		top: 1px;
		width: 3px;
	}
	.inputs {
		width: 190px;
	}
}
/* TABLET HORIZONTAL (MID)*/
@media (min-width: 481px) and (max-width: 760px) and (orientation:landscape)  {
	p, span{
		font-size:0.45em;
		margin-bottom: 2px;
	}
	#idioma{
		padding: 5px; font-size: 0.45em;
	}
	#contenedor_imagen{
		background-image:url('../images/mid-res/login_back.jpg');
	}
	#login_footer{
		bottom: 50px;
	}
	#login_logo{
		width: 106px; height: 34px;
	}
	.popup {
		width: 50%;
		bottom:35%;
		left:27.25%;
	}
	.popup h2 {
		font-size: 1.0em;
	}
	.inputs {
		font-size: 0.45em;
		height: 0px;
		width: 35%;
	}
	.boton {
		-webkit-border-radius: 15;
		-moz-border-radius: 15;
		border-radius: 15px;
		padding: 2px 6px 2px 6px;
		font-size: 0.45em;
	}
	.control {
		padding-left: 28px;
		margin-bottom: 6px;
		font-size: 0.45em;
	}
	.control_indicator {
		top: 6px;
		height: 18px;
		width: 18px;
	}
	.control-checkbox .control_indicator:after {
		left: 4px;
		top: -1px;
		width: 3px;
		height: 10px;
		border-width: 0 3px 3px 0;
	}
	#login_bloque_usuario{
		padding-top: 0px;
	}
	#login_bloque_pass{
		padding-top: 0px;
	}
	#login_bloque_boton{
		padding-top: 3px;
	}
	#login_bloque_recordar{
		padding-top: 3px;
	}
}

/* ESCRITORIOS VERTICAL (HI)*/
@media (min-width: 761px) and (max-width: 970px) and (orientation:portrait) {
	#contenedor_imagen{
		position:absolute;
		width:auto;
		height: 546px;
		top:0px;
		right: 0px;
		background-image:url('../images/hi-res/login_back.jpg');
	}
	#login_footer{
		position: absolute; top:546px; bottom: 0px; left: 0px; right: 0px;
	}
	.login_contenedor_bloque {
		display: block;
		text-align: center;
		position: relative;
	}
	#login_bloque_logo{
		left: 0%; width: 100%;
	}
	#login_bloque_usuario{
		left: 0%; width: 100%; padding-top: 25px;
	}
	#login_bloque_pass{
		left: 0%; width: 100%; padding-top: 25px;
	}
	#login_bloque_boton{
		left: 0%; width: 100%; padding-top: 40px;
	}
	#login_bloque_recordar{
		left: 0%; width: 100%; padding-top: 25px;
	}
	.popup {
		width: 40%;
		bottom:35%;
		left:32.5%;
	}
	.popup h2 {
		font-size: 1.2em;
	}
	.control {
		padding-left: 33px;
		margin-bottom: 6px;
		font-size: 0.9em;
	}
	.control_indicator {
		top: 6px;
		left: 42%;
		height: 25px;
		width: 25px;
	}
	.control-checkbox .control_indicator:after {
		left: 7px;
		top: 1px;
		width: 3px;
	}
	.inputs {
		width: 190px;
	}
}
/* ESCRITORIOS HORIZONTAL (HI)*/
@media (min-width: 761px) and (max-width: 970px) and (orientation:landscape) {
	p, span{
		font-size:0.7em;
		line-height: 0em;
		margin-bottom: 10px;
	}
	#idioma{
		padding: 7px; font-size: 0.7em;
	}
	#contenedor_imagen{
		background-image:url('../images/hi-res/login_back.jpg');
	}
	#login_footer{
		bottom: 65px;
	}
	#login_logo{
		display: block; width: 134px; height: 43px;
	}
	
	.popup {
		width: 40%;
		bottom:35%;
		left:32%;
	}
	.popup h2 {
		font-size: 1.2em;
	}
	.inputs {
		font-size: 0.7em;
		height: 5px;
		width: 55%;
	}
	.boton {
		-webkit-border-radius: 18;
		-moz-border-radius: 18;
		border-radius: 18px;
		padding: 5px 12px 5px 12px;
		margin-bottom: 2px;
		font-size: 0.7em;
	}

	.control {
		padding-left: 28px;
		margin-bottom: 6px;
		font-size: 0.7em;
	}
	.control_indicator {
		top: 6px;
		height: 18px;
		width: 18px;
	}
	.control-checkbox .control_indicator:after {
		left: 4px;
		top: -1px;
		width: 3px;
		
	
	height: 10px;
	border-width: 0 3px 3px 0;
	}
	
	#login_bloque_usuario{
		padding-top: 1px;
	}
	#login_bloque_pass{
		padding-top: 1px;
	}
	#login_bloque_boton{
		padding-top: 10px;
	}
	#login_bloque_recordar{
		padding-top: 10px;
	}
}


/* 720P */
@media (min-width: 971px) and (max-width: 1280px) {
	p, span{
		font-size:0.9em;
		line-height: 0em;
		margin-bottom: 14px;
	}
	#idioma{
		padding: 8px; font-size: 0.9em;
	}
	#contenedor_imagen{
		background-image:url('../images/mhd-res/login_back.jpg');
	}
	#login_footer{
		bottom: 85px;
	}
	#login_logo{
		display: block; width: 176px; height: 56px;
	}
	
	.popup {
		width: 40%;
		bottom:40%;
		left:31.75%;
	}
	.popup h2 {
		font-size: 1.5em;
	}
	.inputs {
		font-size: 0.9em;
		height: 12px;
		width: 65%;
	}
	.boton {
		-webkit-border-radius: 25;
		-moz-border-radius: 25;
		border-radius: 25px;
		padding: 6px 15px 6px 15px;
		margin-bottom: 2px;
		font-size: 0.8em;
	}

	.control {
		padding-left: 33px;
		margin-bottom: 6px;
		font-size: 0.9em;
	}
	.control_indicator {
		top: 6px;
		height: 25px;
		width: 25px;
	}
	.control-checkbox .control_indicator:after {
		left: 7px;
		top: 1px;
		width: 3px;
	}
	#login_bloque_usuario{
		padding-top: 2px;
	}
	#login_bloque_pass{
		padding-top: 2px;
	}
	#login_bloque_boton{
		padding-top: 16px;
	}
	#login_bloque_recordar{
		padding-top: 16px;
	}
}

/* Escritorios muy anchos, este me lo ahorro porque es el que esta por defecto
@media (min-width: 1200px) {
	
}*/</pre></body></html>