@charset "utf-8";
/* CSS Document */

/*------------CORRECCIONES*/

ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

a:visited {
	color: #539BCB;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	/*font-weight: bold;*/
}

.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/*--------FIN-CORRECCIONES*/


body {
	font: 100%/1.4 calibriRegular, Arial, Helvetica, sans-serif;
	background-color: #CACACA;
	background-image: url(img/fondobody.jpg);
	background-repeat: no-repeat;
	background-position: top;
	margin: 0;
	padding: 0;
}

/*caja centrada en pantalla siempre*/

.cajacentro1 {
	position: absolute;
	margin: 0 auto;
	top: 110px;
	width: 1000px;
	height: 590px;
}

.cajacentro {
	display: block;
	position: absolute;
	left: 50%;
	top: 110px;
	width: 1000px;
	height: 590px;
	/*margin-top: -300px;*/
	margin-left: -500px;
	overflow: hidden;
	z-index: 1002;
	/*box-shadow: 2px 2px 2px 2px #999;*/
	}
	
.cajafondo {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -480px;
	top: 0px;
	width:960px;
	height: 1500px;
	/*background: rgba(255,255,255,.5);*/
	}
	
.header {
	position: absolute;
	top: 0px;
	left: 0px;
	display: block;
	width:960px;
	height: 192px;
	/*background: rgba(255,0,0,.8);*/
	background-image:url(img/fondoheader.jpg);
	}
	
.header h1 {
	position: absolute;
	top: 0px;
	left: 20px;
	display: block;
	width:920px;
	height: 80px;
	font-family: calibriBold;
	font-size:40px;
	color:#000;
	text-align:center;
	}
	
.header h2 {
	font-family: calibriBold;
	font-size:16px;
	color:#000;
	}			
	
.slider {
	position: absolute;
	top: 192px;
	left: 0px;
	display: block;
	width:960px;
	height: 444px;
	/*background: rgba(0,0,255,.8);*/
	}

.principal {
	font-family: calibriBold;
	font-size:20px;
	color:#1E39A0;
	text-align:center;
	position: absolute;
	top: 636px;
	left: 0px;
	display: block;
	width:960px;
	height: 764px;
	/*background: rgba(0,255,0,.8);*/
	}	
	
.footer {
	position: absolute;
	top: 1400px;
	left: 0px;
	display: block;
	width: 100%;
	height: 100px;
	/*background: rgba(0,0,0,.8);*/
	background-color: #000;
	}			
