html, body{ margin: 0; padding: 0; }
img{ border: 0; }
body { 
	height: 100%;
	width: 100%; 
	margin: 0; 
	overflow: auto;
	background-color: #FFFFFF;
	
}

/* --------------------------------- minimum size --------------------------------- */
#flashcontent {
	background-color: #FFFFFF;	
}
div.minimum_size {
	/* for mozilla */
	min-width: 955px;
	min-height: 615px;
	width: 100%;
	height: 100%;

	/* for IE */
	width:  expression( Math.max(document.body.clientWidth,955) + "px" );
	height: expression( Math.max(document.body.clientHeight,615) + "px" );
}