body {
	font-family: sans-serif;
}

#gamebox {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	overflow: hidden;
	max-width: 640px;
}

#listBox {
	width: 100%;
	height: 100%;
	display: inline-block;
	overflow: hidden;
	position: relative;
}

#listContent {
	width: 100%;
	position: absolute;
}

#start,#restart{
	width: 100%;
	height: 100%;
	background: #fff;
	border-bottom: 1px #08a solid;
	z-index: 100;
	top: 0;
	font-size: 16px;
	overflow: hidden;
	position: absolute;
	text-align: center;
	background-size: cover;
	background-position: bottom center;
	background-repeat: no-repeat;
	background-image: url(./bg_start.png);
}
#restart{
	display: none;
}

#restart p.info{
	font-size: 24px;
	color: rgb(20, 71, 8);
	margin-top: 40px;
	line-height: 2em;
	font-weight: bolder;
}

#restart span {
	margin: 0 2px;
}

@keyframes buttonAnimation {
0% {transform: scale(1, 1);}
50%{ transform:scale(1.1,1.1);}
100%{transform:scale(1,1);}
}
.startButton {
	display: none;
}

.startButton, .retryButton {
	width: 100%;
	height: 66px;
	position: absolute;
	margin: 0 auto;
	bottom: 5%;
	line-height: 44px;
	background-image: url(./start.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	animation-name: buttonAnimation;
	animation-duration: 1s;
	animation-iteration-count: 9999999;
}

#gametitle {
	width: 100%;
	height: 100px;
	margin-top: 20%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(./title.png);
	background-size: contain;
}

.retryButton {
	background-image: url(./replay.png);
}

#shareButton {
	width: 50%;
	background: #496C07;
	margin: 0 auto;
	padding: 10px 0;
	color: #BADD5D;
	border: 1px #134508 solid;
	border-radius: 3px;
	font-weight: bolder;
		text-shadow: #134508 -1px -1px 0px;
}