/* @option user-selected miscellaneous theme style setting */

#footerSpacer {
	display: none;
}

#footer {
	height: auto;
	position: relative;
}

@media screen and (min-width: 768px) {
	#footerSpacer {
		display: block;
		z-index: 1;
	}

	#footer {
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 1;
	}
}

@media print {
	#footerSpacer {
		display: none;
	}
	
	#footer {
		position: relative;
		bottom: auto;
		left: auto;
	}
}