/*
	originally hints from:
		http://www.gunlaug.no/contents/wd_additions_17.html

	compound fixed <DIV /> with 'fixedEmulationStyle' class
	put ALL body content in <DIV /> with 'fixedEmulationBody' class
*/
.fixedEmulationBody { }
.fixedEmulationStyle {
	position: fixed;
}
@media screen {
	* html,
	* html body {
		overflow-y: hidden !important;
		height: 100%;
		border: 0;
		border-collapse: collapse;
		margin: 0;
		padding: 0;
	}
	* html .fixedEmulationBody {
		height: 100%;
		overflow-y: scroll;
		position: relative;
		z-index: 0;
	}
	* html .fixedEmulationStyle {
		position: absolute;
		z-index: 1;
	}
}


