/**
 * CSSReset.com - How To Keep Footer At Bottom of Page with CSS
 * 
 * Original Tutorial: http://www.cssreset.com/2010/css-tutorials/how-to-keep-footer-at-bottom-of-page-with-css/
 * License: Free - do whatever you like with it! Credit and linkbacks much appreciated.
 *
 * NB: Make sure the value for 'padding-bottom' on #content is equal to or greater than the height of #footer.
 */
html,
body {
	margin:0;
	padding:0;
	height:100%;
	background:#000;
}

#wrapper {
	min-height:100%;
	position:relative;
}

#header {
	background:#000;
	background-image: url(../images/stripe_top_bg.jpg);
	background-repeat: repeat-x;
	background-position: 0px 134px;
	height: 446px;
	width: 100%;
	top:0;
	left:0;
}


#wrapperheader {
	background: #999;
	background-image:url(../images/grey_paper.jpg);
	width: 100%;
	height: 279px;
	top: 167px;
	position: absolute;
	left: 0;
}




#content {
	padding-bottom:140px; /* Height of the footer element */
}


#footer {
	background:#000;
	background-image:url(../images/footer_bg3.jpg);
	background-position:center;
	background-position:top;
	background-repeat:no-repeat;
	width:100%;
	height:125px;
	position:absolute;
	bottom:0;
	left:0;
}