.pongBoard
{	width: 1000px;
	height: 610PX;
	padding: 0px 0px;
	text-align: center;
	position: relative;
	background: #000;
	overflow: hidden;
	margin: auto;
}
.pongBoard .pongBoardDivider
{	width: 1px;
	height: 100%;
	background: repeating-linear-gradient(180deg,#000 0 10px,#FFF 0 20px);
	position: absolute;
	left: 50%;
	top: 0px;
}
.pongBall
{	background: #FF0;
	position: absolute;
	width: 10px;
	height: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
.pongBat
{	background: #FFF;
	position: absolute;
	width: 5px;
	height: 15%;
}

.pongGameOver
{	margin-bottom: 10px;
	text-align: center;
	font-size: 24px;
	position: absolute;
	width: 600px;
	top: 200px;
	left: 500px;
	margin-left: -300px;
	padding: 3px;
	border: 3px solid #666;
	background: #000;
}
.pongGameOver>div
{	padding: 30px 50px;
	border: 3px solid #666;
	background: #DDD;
	color: #000;
}
.pongStartContainer
{	text-align: center;
	font-size: 24px;
}

.pongBoardInfo
{	position: absolute;
	top: 0px;
	left: 0px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
}
.pongBoardInfo>div
{	display: inline-block;
	padding: 3px 5px;
}
.pongBoardInfo:nth-child(2)
{	right: 0px;
	left: auto;
}

.pongInstructions
{	width: 500px;
	padding: 10px 30px;
	margin: 15px auto 0px;
	border: 2px solid #999;
	font-size: 16px;
	text-align: center;
}
.pongInstructions span
{	display: inline-block;
	color: #000;
	background: #ddd;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	padding: 2px 5px;
	font-weight: bold;
}
.pongInstructions span.pongInstructionsArrows
{	font-size: 20px;
}

.pongButtons
{	width: 120px;
	height: 100px;
	float: right;
	display: none;
}
.pongButtons>div
{	float: left;
	width: 40px;
	text-align: center;
}
.pongButtons>div>div
{	width: 40px;
	text-align: center;
	height: 40px;
	padding: 5px 0px;
}
.pongButtons div a
{	display: block;
	width: 40px;
	text-align: center;
	margin-bottom: 5px;
	height: 40px;
	float: right;
	background-color: #d20000;
	background-image: url('../img/template/button_pointer_white.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	color: #FFF !important;
	-moz-border-radius: 60px;
	-webkit-border-radius: 60px;
	border-radius: 60px;
	font-weight: bold;
	font-size: 32px;
	cursor: pointer;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select:none;
	user-select:none;
	-o-user-select:none;
}
.pongButtons>div>a
{	margin-top: 28px;
}
.pongButtonsFire div a
{	background-image: none;
}
.pongButtons div:last-child a
{	float: left
}
.pongButtonsFire
{	width: 100%;
	text-align: center;
}
.pongButtonsFire>div
{	float:none;
	width: 50%;
	margin: auto;
}
.pongButtonsFire>div a
{	width: 100%;
}

@media (max-width: 600px)
{	.mainContainer.container_inner
	{	padding: 10px 0px;
	}
	.pongBoard
	{	width: 100%;
		padding-top: 100%;
		height: 0px;
	}
	.pongInstructions
	{	display: none;
	}
	.pongButtons
	{	display: block;
	}
}