body
{
	margin: 0;
	padding: 0;
	border: 0;
	overflow: hidden;
	height: 100%; 
	max-height: 100%; 
}

#framecontent
{
	position: absolute; 
	bottom: 0; 
	left: 0; 
	width: 100%; 
	height: 130px; /*Height of frame div*/
	overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
	background: url('imagenes/pie.png');
	background-color: #77B1AE;
	background-repeat:repeat;
	color: white;
}

#maincontent
{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 130px; /*Set bottom value to HeightOfFrameDiv*/
	overflow: auto; 
	padding-top:40px;
	background: url('imagenes/cuerpo.png');
	background-color: #459893;
	background-repeat:repeat;
}

#centrado
{
	margin:auto;
	height: 402px; 
	width: 538px;
	
	background: url('imagenes/anagesteyma.png');
	background-color: #459893;
	background-repeat:no-repeat;

}

.innertube
{
	margin: auto;; /*Margins for inner DIV inside each DIV (to provide padding)*/
	margin-top:40px;
	font-family:arial;
}

* html body
{ /*IE6 hack*/
	padding: 0 0 130px 0; /*Set value to (0 0 HeightOfFrameDiv 0)*/
}

* html #maincontent
{ 			/*IE6 hack*/
	height: 100%; 
	width: 100%; 
	margin: 0 auto;
	padding-left:25%;
}

/** html #centrado
{
	margin: 0 auto;
}*/