html, body {
	margin: 0;
	padding: 0px;
	height: 100%;
	width: 100%;
	overflow: auto;
	background-color: #FFFFFF;
}
div.minimum_size {
	/* for mozilla */
	min-width: 724px;
	min-height: 415px;
	width: 100%;
	height: 100%;

	/* for IE */
	width: expression( Math.max(document.body.clientWidth, 724 ) + "px" );
	height: expression( Math.max(document.body.clientHeight, 415 ) + "px" );
}