/***************************************************************************
 ** Copyright 2012 © Microsoft Corporation. All Rights Reserved. 
 ** Demo Author: Tobin Titus, Microsoft Corporation
 ***************************************************************************/
 
html, body {
	padding: 0px;
	font-family: Arial;
	margin: 0px;
	width: 100%;
	height: 100%;
	overflow: hidden;
	min-width: 1000px;
	min-height: 550px;
	-ms-user-select:none;
	-webkit-user-select:none;
	-moz-user-select: -moz-none;
	user-select : none;  
}

div {
	padding: 0px;
	margin: 0px;
}

#display {
	width: 100%;
	position: absolute;
	height: 20px;
	bottom: 0px;
	border-top: 1px solid #c0c0c0;
	background-color: rgba(0,0,0,.5); 
	z-index: 400;
	text-align: center;
	display: none;
}

#blockHolder {
	position: absolute;
	width : 610px;
	height : 400px;
	margin: auto auto;
}

.block {
	width: 61px;
	height: 60px;
	margin: 0px;
	padding: 0px;
	float: left;
}
.noBlock { 
	width: 61px;
	height: 60px;
	margin: 0px;
	padding: 0px;
	float: left;
}

.lane {
	position: absolute;
	z-index: 10;
	top: 0px;
	height: 100%;
	width: 50px;
}

.overlay {
	z-index: 200;
	position: absolute;
	top: 0px;
	height: 100%;
	width: 50%;
	background-color: #c0c0c0;
	opacity: 0;
	-ms-touch-action: none; 
}

#scores {
	position: absolute;
	width: 100%;
	height: 100px;
	top: 0px;
	left: 0px;
	z-index: 5;
	clear: both;
}
.score {
	position: relative;
	height: 50px;
	width: 150px;
	margin-top: 20px;
	margin-left: 100px;
	margin-right: 100px;
	font-size: 32px;
}

#rightScore {
	float: right;
	text-align:right;
}
#leftScore {
	float: left;
	text-align:left;
}

#left {
	left: 0px;
}
#leftOverlay {
	left: 0px;
}

#right {
	right: 0px;
}
#rightOverlay {
	right: 0px;
}

#warning {
	display: none;
}

.supported>.debugConsole {
	padding: 5px;
	border-bottom: 5px solid #c0c0c0;
	background-color: rgba(255,255,255,.3);
	z-index: 5000;
}

.notSupported>.debugConsole  {
	padding: 5px;
	border-bottom: 5px solid #c0c0c0;
	background-color: #c0c0c0;
	z-index: 5000;
}


.debugConsole h2 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 5px 0px;
}


#fps {
	width: 100%;
	position: absolute;
	bottom: 0px;
	background-color: rgba(0,0,0,.3);
	color: rgba(255,255,255,.8);
	font-size: 10pt;
	height: 20px;
	text-align: center;
	padding-top: 10px;
}