* {margin:0;padding:0;} 

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

html, body, #stickyWrap {height: 100%;}

body > #stickyWrap {height: auto; min-height: 100%;}

#stickyHeader {
}

#stickyMain {
	padding-bottom: 150px;}  /* must be same height as the stickyFooter */

#stickyFooter {position: relative;
	margin-top: -150px; /* negative value of stickyFooter height */
	height: 150px;
	clear:both;
	} 

/* CLEAR FIX*/
.clearfix:after {content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix { height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */