/* this css allows the page to float along bottom of the page */

* {
	margin: 0;
}
html, body {
	height: 100%;
	margin: 0px;
	padding: 0px;
}
.wrapper {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	padding: 0px;
	margin: 0 auto -550px; /* the bottom margin is the negative value of the container's height */
}
.container, .push {
	height: 550px; /* .push must be the same height as .container */
	margin: 0px;
	padding: 0px;
}


