/* style to make the footer stick to the bottom of the page*/

html {
	position: relative;
	min-height: 100%;
}
body {
	margin: 0 0 135px; /* bottom = footer height */
}
footer {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 135px;
	width: 100%;
}
