/*delimitamos capas index*/
html,body{      /*Firefox...*/
	height:100%;
}

* html div{       /*IE*/
	height:100%;
}

body{
	background-image: url(../images/fondo.jpg);
	background-repeat:repeat;
	text-align:center;
	margin:0px;
	padding:0px;
}

#contiene_juego{
	height:auto;
	/*min-height:100%;*/
	text-align:center;
	position: relative;
	z-index:0;
	color:#000;
	margin:0px auto; /* truco para centrar la capa horizontalmente en firefox */
	overflow:auto; /* truco para que la capa ocupe todo el ALTO en firefox */
	background-image:url(../images/fondo_juego.png);
	background-repeat:no-repeat;
	width:815px;
	min-height:550px;
	height:550px;
	margin-top:20px;
	padding-top:25px;

}
