/* CSS Document */

* {

	padding:0;
	margin:0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}
	
html {
	
	font-size:12pt;
}

body {
	background-color: #ffffff;
	background-image: url(../Imagenes/fondo_body.png);
	background-repeat: no-repeat;
	background-attachment:fixed;
	width:100%;
	background-position: 50% 50%;
	/*font-size:16pt;*/
}


#contenedor {
	width:80%;
	height: 100%;
	max-height:3500px;
	margin: 0 auto;
	
}

.main {
	width:100%;
	height:100%;
	position:relative;
	float:left;
	display:inline-block;
	z-index:1;
	background-color:transparent;
	margin: 0 auto;
	
}

.imagen{
	width:100%;
	height:auto;
}

.imagen img{
	width:100%;
}
#texto {
	width:100%;
	height:auto;
	float:left;
	background-color: rgba(255,255,255,.6);
	text-decoration:none;
	text-align:center;
}

.titulo{
	width:100%;
	height:auto;
	font-family:Arial, Helvetica, sans-serif;
	font-size:1.75rem;
	font-weight:bold;
	text-align:justify;
	padding: 8% 15%;
	color:#666666;
	
}

.titulo h1{
	font-family:Arial, Helvetica, sans-serif;
	font-size:1.2rem;
}

.titulo p{
	font-family:Arial, Helvetica, sans-serif;
	font-size:1rem;
}

/* Por debajo de 700px */
@media (max-width: 480px) {

#contenedor {
	width:100%;
	height: 100%;
	margin: 0 auto;
	
}

.titulo{
	width:100%;
	height:auto;
	font-family:Arial, Helvetica, sans-serif;
	font-size:.9rem;
	font-weight:bold;
	text-align:center;
	padding: 2%;
	color:#666666;
	
}


}
