@charset "utf-8";
/* CSS Document */
html {
overflow: auto;
}
body{
	background: #333333;
}
div{
	position:absolute; 
	top:50%;  /*place the top of the div 50% from the top of  browser*/ 
	left:50%;  /*place the left of the div 50% from left of browser */
	width:800px; /*Specify the width of the div, the width of swf file*/ 
	height:600px; /*Specify the height of div, the height of swf file*/
	margin-left:-400px;  /*use margen left to move the div half the left, half size of width*/  
	margin-top:-300px; /*use margen left to move the div to the top,  half size of height*/
}  

