﻿body,html {
	width:  100%;
	height: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
	background: #000000;
	overflow: hidden;
}
body {
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-image: linear-gradient( #99999c,#66666a );
}
#gameCanvasContainer {
	width: 100%;
	height: 100%;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	background-image: linear-gradient( #d1f0ff,#a5defa );
	/* easter 
		background: repeating-linear-gradient(
		90deg,
		#ffe5e8,
		#ffe5e8 10px,
		#ffd9dc 10px,
		#ffd9dc 20px
	);*/
	/* regular */
	background: repeating-linear-gradient(
		90deg,
		#d1f0ff,
		#d1f0ff 10px,
		#c4ebff 10px,
		#c4ebff 20px
	);
}
#gameCanvas {
	width: 0px;
	height: 0px;
}
#responsive-banner-container {
	position: absolute;
	left: 5px;
	top: 5px;
	width: 250px;
	height: 250px;
}
@media all and (orientation:portrait) {
	#responsive-banner-container {
		display: none;
	}
}