/*Hoja de estilos en tres columnas con cabecera (imagen) y barra de navegación.
Se usará para la hoja de presentación*/

/*Introduzco el color de fondo definiendo una propiedad para el elemento body*/
body {
	background-color: #800000;
}

/*Para centrar la página se crea un "contenedor", de anchura fija y se hacen los márgenes superior e inferior igual a 0,
y los laterales en 'auto', de forma que el navegador lo centra respecto al elemento padre, en este caso el 'body' de la
página*/
#contenedor {
	width: 730px;
	height: 2030px;
	margin: 0 auto;
}
img {
	border: none;
}
/*Estilo para posicionar la imagen insertada en la cabecera*/
img.cabecera {
	width: 100%;
	margin-top: 1px;
	margin-bottom: 1px;
}
/*Creación de una barra de navegación horizontal. Se usa la propiedad float:left y display:inline en c*/
ul.barrahorizontal {
	float: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	display: block;
}
ul.barrahorizontal li {
	background-color: #EBEBEB;
	display: inline;
	float: left;
}
ul.barrahorizontal li a:link, ul.barrahorizontal li a:visited {
	padding-left: .75em;
	padding-right: .7em;
	padding-top: .4em;
	padding-bottom: .4em;
	border-left: 2px solid #999999;
	display: block;
	text-decoration: none;
	color: #333;
}
ul.barrahorizontal li.first a:link, ul.barrahorizontal li.first a:visited {
	padding-left: .75em;
	padding-right: .7em;
	padding-top: .4em;
	padding-bottom: .4em;
	border-left: 2px none #999999;
	display: block;
	text-decoration: none;
	color: #333;
}
ul.barrahorizontal li a:hover {
	background-color: #E7B8BF;
}
/*El elemnto "main" se crea para poner dentro los contenidos y dotarlo de un color diferente al fondo, de arriba a abajo*/
#main {
	width: 100%;
	height: auto;
	margin-top: 35px;
	margin-bottom: 1px;
	padding-top: .7em;
	background-color: #2D2D2D;
	border: 1px #FFFFFF solid;
}
#ccl {
	
	width: 80%;
	height: auto;
	margin-left: 10%;
	margin-right: 10%;
	margin-top: 35px;
	margin-bottom: 35px;
	text-align: center;
	padding-top: .7em;
	padding-bottom: .7em;
	background-color: #ECECEC;
	border: 1px #FFFFFF solid;
}
#espaciotexto {
	
	width: 96%;
	height: 95%;
	background-color: #2D2D2D;
	display: block;
	border-color: #800000;
	border-width: thin;
}
h1 {
	margin-right: 1em;
	margin-left: 1em;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
	color: #FFFFFF;
	margin-bottom: 0.5em;
}
ol.text {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 16px;
	margin-right: 1em;
	margin-left: 2.5em;
	font-weight: 500;
	line-height: 1.5;
	text-align: justify;
	color: #FFFFFF;
}
ol.text li {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 16px;
	margin-right: 1em;
	margin-left: 0;
	font-weight: normal;
	line-height: 1.5;
	color: #FFFFFF;
}
ol.text li a:link, ol.text li a:visited {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 16px;
	margin-right: 1em;
	margin-left: 0;
	font-weight: normal;
	line-height: 1.5;
	text-decoration: none;
	color: #FFD57D;
}
ol.text li a:hover {
	color: #D5DBF4;
}
ul.text {
	list-style-type: square;
	text-align: justify;
	margin-top: 0.5em;
}
ul.text li {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 16px;
	margin-right: 1em;
	margin-left: 0;
	font-weight: normal;
	line-height: 1.5;
	color: #FFFFFF;
}
ul.text li a:link, ul.text li a:visited {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 16px;
	margin-right: 1em;
	margin-left: 0;
	font-weight: normal;
	line-height: 1.5;
	text-decoration: none;
	color: #FFD57D;
}
ul.text li a:hover {
	color: #D5DBF4;
}
p.text {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 16px;
	margin-right: 1em;
	margin-left: 1em;
	font-weight: 500;
	line-height: 1.5;
	text-align: justify;
	color: #FFFFFF;
}
p.text a:link, p.text a:visited {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 16px;
	margin-right: 1em;
	margin-left: 0;
	font-weight: ;
	line-height: 1.5;
	text-decoration: none;
	color: #FFD57D;
}
p.text a:hover {
	color: #D5DBF4;
}