@charset "utf-8";
/* CSS Document */

* {
	border: 0;
	margin: 0;
	padding: 0;
}
html, body { /* Here you place a continious background */
	height: 100%;
}
#innerWrap { /* Here you can set a background for the content. Wraps the content to a certain size.  */
	min-height: 100%;
	height: auto;
	height: 100%;
	margin: 0 auto;
	width: 960px;
}
#middleWrap { /* Here you can place a background image that places itself outside the inner wrapper */
}
#outsideWrap { /* makes the tail float */
	height: auto !important;
	height: 100%;
	margin: 0 auto -150px;  /* the bottom margin is the negative value of the footer's height */
	min-height: 100%;
}
#footer, #push {
	height: 150px; /* .push must be the same height as .footer */
}
#push {
	width:100%;
	clear:both;
}
#footer {
	clear: both;
	width:100%;
}