@charset "utf-8";
/* CSS Document */

html {    
	width: 100%;
	height: 100%; 
	overflow: hidden;
}
body {    
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	background-color: #FFF;
	text-align: center;
	font-family: Tahoma, Geneva, sans-serif;
}
#flashContent {
	width: 100%;
	height: 100%;
	min-width: 992px;
	min-height: 582px;
	/*The following code causes IE to crash*/
	width: expression(document.body.clientWidth < 992 ? "992px" : "100%" );
	height: expression(document.body.clientHeight < 582 ? "582px" : "100%" );
	margin: 0px;
	padding: 0px;
}
#alternativeContent {
	color: #000;
	position: absolute;
	top: 300px;
	text-align: center;
}

