/* IE Breitenbestimmung Hacks */
* html div#ResizeContainer {
	he\ight: 0;
	overflow: hidden;
	o\verflow: visible;
}
@media screen {
	#ResizeContainer {
		width: expression(  (d = document)
				&& (fs = d.getElementById('CalibrationDiv').offsetWidth)
				&& (po = 2 * fs)
				&& (bo = 3)
				&& (min = 790 * fs)
				&& (max = 1149 * fs)
				&& (cw = d.body.clientWidth)
				&& (px = 'px')
				&& (cw - po >= max + bo ? max + px : cw - po <= min + bo ? min + px : 'auto')
		);
	}
}
@media print {
	#ResizeContainer {
		width: auto;
	}
}
