/* CSS Document */
 * {margin:0;padding:0;}
 html, body {height: 100%;}
 #wrap {min-height: 100%;}
 #main {overflow: hidden;
 padding-bottom: 190px; /* debe ser la misma altura que el pie de página */ }

 #header {
	position: absolute;
	margin-top: 0px; /* valor negativo de altura de pie de página */
	height:2px;
	clear:both;
	height:<length>;
	width: 100%;
	background-color: #fff;
}
#header{
position: relative;
}
#footer {
	position: relative;
	margin-top: -198px; /* valor negativo de altura de pie de página */
	height: 198px;
	clear:both;
	background-color: #595959;
}
div.centerTable{
        text-align: center;
}
div.centerTable table {
       margin: 0 auto;
       text-align: left;
}
 /*Opera Fix*/
 body:before {/* thanks to Maleika (Kohoutec)*/
 content:"";
 height:100%;
 float:left;
 width:0;
 margin-top:-32767px;
 }