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