* {
	margin: 0;
	padding: 0;
} 

/* must declare 0 margins on everything, also for main layout components use padding, not 
vertical margins (top and bottom) to add spacing, else those margins get added to total height 
and your footer gets pushed down a bit more, creating vertical scroll bars in the browser */

html, body {
	height: 100%;
}

.outer_wrapper {
	height: 100%;
}

.wrapper {
	min-height: 100%;
	margin: 0 auto;
	max-width: 1024px;
}

#sticky {
	overflow: auto;
	padding-bottom: 218px;
}  /* must be same height as the footer */

footer {
	position: relative;
	width: 100%;
	margin-top: -218px; /* negative value of footer height */
	height: 218px;
	clear: both;
	z-index: 1;
} 

footer > div {
	padding: 20px 0 10px 0;
}

/*Opera Fix*/
body:before {/* thanks to Maleika (Kohoutec)*/
	content: "";
	height: 100%;
	float: left;
	width: 0;
	margin-top: -32767px;/* thank you Erik J - negate effect of float*/
}

.ie7 .wrapper {
	display: table;
	height: 100%
}
