@charset "utf-8";
/* CSS Document */

/**
 * Layout
 * ------
 * Centrado horizontal, sin cabecera ni pie
 *
 * Estructura HTML:
 * ----------------
	<body>
		<div id="contenedor">
		</div>
	</body>
*/
* {
	margin:0;
	padding:0;
}
html, body {
	height:100%;
}
body {
	text-align:center;
}
#contenedor {
	margin:0 auto;
	position:relative;
	text-align:left;
/*	overflow-x:hidden;*/
}
