/* CSS Document */

div {
	
}

#pong_main {
	float:left;
	margin:1px;
}

#pong_game_div {
	position: relative;

	width:410px;
	height:310px;	
}



#pong_field_overlay {

	position:absolute;
	width:400px;
	height:300px;
	
	text-align: center;
	vertical-align: bottom;
	
	background-color:#000000;
	color:#ffffff;
	
	z-index:100;
	FILTER: alpha(opacity=70);
	-moz-opacity: 0.7;
}

#game_field_div {
	position:absolute;
	border:1px solid #000;
	
	overflow:hidden;
	
	width:400px;
	height:300px;
	
	cursor:crosshair;
}

#game_bat_1 {
	position:absolute;
	background:#000000;
	
	width:10px;
	height:60px;
	
	left:10px;
	top:50px;
}


#game_bat_2 {
	position:absolute;
	background:#000000;
	
	width:10px;
	height:60px;
	
	left:380px;
	top:5px;
}

#game_ball {
	position: absolute;
	background:#000000;
	
	overflow:hidden;
	
	width:10px;
	height:10px;
	
	left:200px;
	top:150px;

}
