@charset "utf-8";
/* ----------------------------------------------------------------------- 
	include.css "contiene únicamente los estilos que usan los includes"
	maquetado.css "contiene únicamente la estructura del site"
	reset.css "contiene estilos que limpian"
	lienku.css "contiene todos los estilos que hacen al site"
	* html (+estilo) "Para explorer 6"
------------------------------------------------------------------------ */

/* -------------- ESTRUCTURA BÁSICA DEL SITE -------------- */
body {
	margin:0px;
	background:url(../images/bg.jpg) #d3d3d3 left top repeat-x;
	}
#contenedor{
	width:100%;
	min-height:768px;
	overflow: hidden;
	height: expression(this.scrollHeight < 769? "768px" : "auto" );
	text-align:center;
	margin:auto;
	}
#header{
	width:960px;
	margin:auto;
	position:relative;
	text-align:center;
	}
#contenido{
	width:960px;
	margin:auto;
	position:relative;
	}
#footer{
	width:960px;
	height:60px;
	margin:auto;
	text-align:center;
	}
