﻿/*
    Used to 'pin' objects to the bottom of a view or page
    [MRO - 12.01.2015]    
*/

* {
	margin: 0;
}
html, body {
	height: 100%;
}
.stickywrapper {
	min-height: 100%;
	height: auto !important; /* This line and the next line are not necessary unless you need IE6 support */
	height: 100%;
	margin: 0 auto -35px; /* the bottom margin is the negative value of the footer's height */
}
.stickyfooter, .stickypush {
	height: 35px; /* .push must be the same height as .footer */
}

/*

Sticky Footer by Ryan Fait
http://ryanfait.com/

*/