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

/*  
Sticky Footer Solution
by Steve Hatcher 
http://stever.ca
http://www.cssstickyfooter.com
*/

html, body {
	height: 100%;
}
#wrap {
	min-height: 100%;
	width: 965px;
	margin: 0 auto;
}
#main {
	overflow:auto;
	padding-bottom: 115px;   /* must be same height as the footer */
	width: 100%;
}  
#side {
	overflow:auto;
}  
#footer {
	position: relative;
	width: 960px;
	margin-top: -115px;     /* negative value of footer height */
	height: 115px;
	clear:both;
	background-color: #4C4C4C;
	-webkit-border-radius: 3px 3px 0px 0px;
	border-radius: 3px 3px 0px 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-image: url(../imagenes/footer_fondo.gif);
	background-repeat: repeat-x;
	background-position: center top;
	color: #FFF;
	padding: 10px;
}
/*Opera Fix*/
body:before {
	content:"";
	height:100%;
	float:left;
	width:0;
	margin-top:-32767px;   /*  - negate effect of float*/
}
