html{height:100%;width:100%;background:#eee;}
html,body{
	margin:0;
	padding:0;
	text-align:center;
	body{font-family: 'Roboto Condensed', sans-serif;background:transparent;color:#111;font-size:14px;height:100%;width:100%}
	p{font-size:14px;line-height:21px;margin-bottom:12px;color:#2E4E3E;}
	img{display:inline-block;max-width:100%;height:auto;} 
}

#canvas-game{
	margin:0 auto;
	text-align:left;
	width:612px;
	margin-top:20px;
	border:Solid 1px #ebe5e5;
	height:490px;
	position:relative;
}

#game-statistic{
	margin:0 auto;
	text-align:left;
	width:612px;
	margin-top:20px;
}


#statistic-left, #statistic-right{
	font-family: 'Roboto Condensed', sans-serif;
	font-size:12px;
	float:left;
}

#statistic-right{
	float:right;
}

.bold-text{
	font-weight:bold;
}

.clear{
	clear:both;
}

.box-picture{
	float:left;
	padding:10px;
	width:100px;
	height:100px;
	border:solid 1px #ebe5e5;
        display:none;
}

.box-picture > img{
	width:100px;
	height:100px;
}

.box-cover-wrapper{
	position:absolute;
	left:0;
	top:0;
	z-index:100;
}

.box-cover{
	padding:10px;
	width:100px;
	height:100px;
	background:url(game-Offen/image-cover.png) no-repeat;
	border:solid 1px #ebe5e5;
	float:left;
	cursor:pointer;
}

#game-message{
	margin:0 auto;
	margin-top:50px;
	font-family: 'Roboto Condensed', sans-serif;
	font-size:20px;
	background:#CCCC99;
	padding:15px;
	border:solid 1px #ccc;
	border-radius:5px;
	width:612px;
	display:none;
}

#btnRestart{
	padding:15px;
	font-weight:bold;
	text-align:center;
	background:#003333;
	text-decoration:uppercase;
	margin-top:20px;
	color:#FFFFFF;
	border:none;
	border-radius:5px;
	cursor:pointer;
}

/**** IF SCREEN SIZE IS NO LARGER THAN 640px ****/
@media (max-width: 640px) {
	#canvas-game{
		width:395px;
		height:485px;
	}
	
	.box-picture, .box-picture > img, .box-cover{
		width:75px;
		height:75px;
	}
	
	.box-cover{
		background:url(game-Offen/image-cover-75.png) no-repeat;
	}
	
	#game-statistic{
		margin-top:15px;
	}
	
	#game-message, #game-statistic{
		width:400px;
	}
	
}

/**** IF SCREEN SIZE IS NO LARGER THAN 320px ****/
@media (max-width: 320px) {
	#canvas-game{
		width:220px;
		height:490px;
	}
	
	.box-picture, .box-picture > img, .box-cover{
		width:50px;
		height:50px;
	}
	
	.box-cover{
		background:url(game-Offen/image-cover-50.png) no-repeat;
	}
	
	#game-statistic{
		margin-top:15px;
	}
	
	#game-message, #game-statistic{
		width:220px;
	}
	
	#statistic-left, #statistic-right{
		float:none;
	}
}