@charset "utf-8";

/* ESTILO DEL BODY */

body {
	background-color: #FFF;
	margin: 0;
}

/* ESTILOS DE CAPAS */


#cuerpo {
	/* contenedor principal */
	margin: auto;
	width: 900px;
	height: 625px; /* Queda así para ver cómo funciona el pie de página; poner la altura que se quiera, mejor en % */
	background-color: #EAEAEA;
}

#header {
	/* contenedor de la imagen de cabecera */
	position: absolute;
	z-index: 10;
}

#header_detras {
	/* capa que estira el fondo del header hasta los extremos del navegador */
	width: 100%;
	height: 150px;
	position: absolute;
	top: 0;
	background-color: #EAEAEA;
}

#menu {
	/* contiene el menú de css y js */
	width: 100%;
	padding-top: 150px;
	height: 30px;
	float: left;
	margin: auto;
}

#menu_detras {
	/* capa que estira el fondo del menú hasta los extremos del navegador */
	width: 100%;
	height: 36px;
	position: absolute;
	margin-top: 150px;
	background: url(../img/desplegable/fondo.gif) repeat-x;
}

#pie {
	/* pie de página */
	width: 100%;
	height: 28px;
	position: fixed;
	bottom: 0px;
	background: url(../img/pie/fondo.gif) repeat-x;
}

#texto_pie {
	/* texto del pie de página */
	width: 500px;
	margin: auto;
	text-align: center;
}

/* ESTILOS DE TEXTO */

.texto_01 {
	font-family: Arial, Helvetica, sans-serif;
	color: #333;
	font-size: 12px;
}