/* テトリス用スタイルシート */

#content {
	overflow: hidden;
}

#main_panel {
	float: left;
	position: relative;
	border: 1px black solid;
	width:  288px; /* 12列 */
	height: 528px; /* 22行 */
	margin-left: 100px;
}
.background_layer, .block_layer {
	position: absolute;
	left: 0px;
	top: 0px;
}

#status {
	float: left;
}
#next_block {
	position: relative;
	border: 1px black solid;

	width: 144px;
	height: 144px;
	margin-left: 30px;
}

#status .level, #status .clear_line,
#status .score, #status .play_time
{
	border: 1px black solid;
	width: 144px;
	height: 36px;
	line-height: 36px;
	margin-left: 30px;
	margin-top: 20px;

}
#status .play_time {
	margin-top: 0px;
	margin-bottom: 20px;
	text-align: center;
}

#status .title {
	display: inline-block;
	width: 44px;
	text-align : center;
}

#status .num {
	display: inline-block;
	width: 90px;
	text-align: right;
}


