html {
	height: 100%; 
}

body {
	height: 100%; 
	background-color: #f2f2f2;
	color: #000;
	font-family: arial, sans-serif;
	margin: 0;
	padding: 0;
}

#content {
	overflow: hidden;
}

#flashcontent
{
	position: absolute;
	z-index: 100;
	min-width:1000px;
	min-height:700px
}

*html #flashcontent
{
	width:expression(document.body.clientWidth < 1000 ? "1000px" : "100%");
	height:expression(document.body.clientHeight < 700 ? "700px" : "100%");
}