/*Limpio los elementos html*/
* {
	margin: 0;
	padding: 0;
	border: none;
	}
	
ul {
	list-style: none;
	}
	
/*Librería de colores
	#ffffff: blanco
	#a92021: granate HES;
	#7a93ca: azul HES;
	#686e73: gris textos;
	#d2d2d2: gris claro (resalte);
*/
	
/*1- Estilos básicos de la página*/

html {
	background-image: linear-gradient(bottom, #ECECEC 30%, #C5C5C5 100%);
	background-image: -o-linear-gradient(bottom, #ECECEC 30%, #C5C5C5 100%);
	background-image: -moz-linear-gradient(bottom, #ECECEC 30%, #C5C5C5 100%);
	background-image: -webkit-linear-gradient(bottom, #ECECEC 30%, #C5C5C5 100%);
	background-image: -ms-linear-gradient(bottom, #ECECEC 30%, #C5C5C5 100%);
	
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.3, #ECECEC),
		color-stop(1, #C5C5C5)
	);
	}

body {
		
	background-image: url("../imagenes/montanyas_montserrati.png");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: 50% -20%;
	color: #686e73;
	font-family: "arial", sans-serif;
	font-size: 11pt;
	line-height: 1.2em;
	padding-bottom: 60px;}
	
#contenedor {
	margin: 0 auto 60px;
	width: 680px;
	background-color: #ffffff;
	padding: 60px;
	-webkit-box-shadow:  0px 4px 10px 1px #4e4e4d;
    box-shadow:  0px 4px 10px 1px #4e4e4d;
    border-radius: 0 0 20px 20px;
	position: relative;
}	

	
a {
	text-decoration: none;
	color: #686e73;
	}

	a:hover{
	color: #a92021;
	}

h1{
	font-size: 250%;
	font-weight: lighter;
	margin: 60px 0;
	padding-top: 80px;
	}

h2{
	font-size: 150%;
	margin: 0px 0 15px 0;
	color: #a92021;
	}

h3{ font-size: 110%;
	margin: 0px 0 10px 0;
	color: #7a93ca;
	
}

p {
	margin-bottom: 15px;
	text-align: justify;
	}


/*2-estructura*/

/*Cabecera*/

header {
	-webkit-box-shadow:  0px 4px 10px 1px #4e4e4d;
    box-shadow:  0px 4px 10px 1px #4e4e4d;
    border-radius: 0 0 20px 20px;
	background-color: #fff;
	height: 40px;
	margin: -60px -60px 60px -60px;
	padding: 10px 60px;
	position: fixed;
	width: 680px;
	margin-bottom: 60px;
	z-index: 10;
	}

header img {
	margin-left: -30px;
	}

/*Menu principal dentro de la cabecera*/

#menu_principal {
	float: right;
	margin-top: 28px;
	border-bottom: 1px solid #a92021;
	font-size: 85%;
	}
	
#menu_principal li a {
		display: block;
	}
	
#menu_principal li {
	float: left;
	margin-left: 5px;
	padding: 4px 8px 12px 8px;
	width: 70px;
	height: 16px;
	text-align: center;
	}

	#menu_principal li a:hover {
		color: #a92021;
	}
   	
	
	#menu_principal li.pag_activa {
	background-image: url("../imagenes/seleccionado.png");
	background-repeat: no-repeat;
	background-position: 50% 100%;
	color: #a92021;
	font-weight: bold;
	}
	
	
	
/*Pie*/

footer {
	background-color:#a92021;
	height: 20px;
	color: #ffffff;
	margin: 60px -60px -60px -60px;
	border-radius: 0 0 20px 20px;
	padding: 20px 20px 20px 60px;
	position: relative; left: 0; bottom: 0;
	width: 720px;
 	clear: both;
 	}

footer p{
	font-size: 80%;
	float: left;
	}

/*Navegacion interior del pie*/

#menu_pie {
	float: right;
	font-size: 80%;
	}

#menu_pie a {
	color: #ffffff;
	}
	
	#menu_pie a:hover {
	color: #000;
	}

#menu_pie li {
	float: left;
	margin-right: 40px;
	border-left: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
	text-align: right;
	padding: 0 5px;
}
	
#menu_pie li.sinbarra {
	border-left: none;
	}	



/*3 Página de presentación index*/

header.cabecera_portada {
	-webkit-box-shadow:  none;
    box-shadow:  none;
    border-radius: 0;
	position: static;
}

#presenta_logo {
	text-align: center;
	background-color: #fff;
	padding: 0 0 80px 0;
	}
	
#presenta_info {
	background-color: #a92021;
	padding: 60px 60px;
	margin: 0 -60px -60px -60px;
	color: #fff;
	overflow: auto;
	}	
#texto_info {
	width: 340px;
	float: left;
	}		

	
#imagen_info {
	width: 300px;
	float: right;
	}
	
#imagen_info p{
	font-size: 75%;
	margin-bottom: 0;
	}	
	
#imagen_info li{
	float: left;
	margin: 0 0 10px 20px;
	}
	
#imagen_info li img{
	border: solid 1px #fff;
	}			
	
#imagen_info li img:hover {
	border: solid 1px #a92021;
	opacity: 0.6;
	}		

			
