
/* 

STICKER - A valid, easy to use CSS sticky footer by Ryan Fait

This is the basic CSS you need along with the one extra empty
div and the wrapper required to achieve the effect. I suggest
that you leave the * { margin: 0; } code in while testing and
building your site because margins do have a tendency to mess
things up a bit. Have fun!

Copyright (c) 2006-2007 Ryan Fait

*/

html, body {
	height: 100%;
	text-align:center;
	margin:0px;
	background-color:#FFF;	
}

.wrapper {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0px auto -95px; /* the bottom margin is the negative value of the footer's height */	
}

.push {
	height: 95px; /* .push must be the same height as .footer */
	clear:both;
}

.footer{
	height: 95px; /* .push must be the same height as .footer */
	clear:both;
	text-align:center;
	margin:auto;
	background:url(../images/footer-bg.png);
	background-repeat:repeat-x;
	}








