@charset "utf-8";
/* CSS Document */

html {    
	overflow: auto;
}
body {
	margin: 0px;
	padding: 0px;
	background-color: #FFF;
	text-align: center;
	font-family: Tahoma, Geneva, sans-serif;
}
#flashContent { 
	overflow: hidden;
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	min-width: 994px;
	min-height: 554px;
	/*The following code causes IE to crash*/
	/*width: expression(document.body.clientWidth < 994 ? "994px" : "100%" );*/
	/*height: expression(document.body.clientHeight < 554 ? "554px" : "100%" );*/
}
#alternativeContent {
	position: absolute;
	top: 300px;
}
a:link {
	color: #FF9;
	text-decoration: underline;
} /* unvisited link */

a:visited {
	color: #C90
} /* visited link */

a:hover {
	color: #FF0;
	text-decoration: none;
} /* mouse over link */

a:active {
	color: #FF0;
} /* selected link */

