html, body { 
	height:100%; 
	margin:0; 
	padding:0; 
}
body {
	background-color:#c5e1f5;
}
body, table {
	font:11px tahoma;
	color:#333;
}
#tetris {
	position:relative;
	width:300px;
	height:310px;
	border:1px solid #baa68e;
	background:#fff;
	margin:0 auto;
}
#tetris .left {
	background:#f5ede3;
	background-image:url(../images/tetris_left.jpg);
	position:absolute;
	width:130px;
	height:100%;
	left:0px;
	top:0px;
}
#tetris .left h1 {
	font-size:11px;
	text-align:center;
	margin-top:10px;
	margin-bottom:10px;
}
#tetris .left h1 a:hover {
	color:#ff6600;
	text-decoration:none;
}
#tetris .left .menu {
	text-align:center;
	margin-top:15px;
}
#tetris .left input {
	font:11px tahoma;
	color:#333333;
	text-transform:uppercase;
	background:#eae0d1;
}
#tetris .left .menu input {
	width:90px;
}
#tetris .left .keyboard {
	position:absolute;
	top:170px;
	left:22px;
	width:85px;
	height:55px;
	overflow:visible;
	/* display:none; */
}
#tetris .left .keyboard input {
	font:11px tahoma;
	width:25px;
	height:25px;
	padding-bottom:2px;
	text-transform:none;
}
* html #tetris .left .keyboard input {
	padding-left:1px;
}
#tetris .left .keyboard .up {
	position:absolute;
	left:30px;
	top:0px;
	width:30px;
	height:30px;
}
#tetris .left .keyboard .up input {
	font:15px tahoma;
	padding-top:3px;
}
#tetris .left .keyboard .down {
	position:absolute;
	left:30px;
	top:30px;
	width:30px;
	height:30px;
}
#tetris .left .keyboard .down input {
	font:14px tahoma;
}
#tetris .left .keyboard .left {
	position:absolute;
	left:0px;
	top:30px;
	width:30px;
	height:30px;
}
#tetris .left .keyboard .right {
	position:absolute;
	left:60px;
	top:30px;
	width:30px;
	height:30px;
}
#tetris-gameover {
	position:absolute;
	width:100%;
	top:50%;
	text-align:center;
	font-weight:bold;
	display:none;
}
#tetris-nextpuzzle {
	position:absolute;
	top:35%;
	left:35%;
	background:#ffffff;
	overflow:visible;
	display:none;
}
#tetris .left .stats {
	position:absolute;
	left:35px;
	bottom:10px;
}
#tetris .stats td { 
	padding-bottom:1px; 
}
#tetris .stats .level { 
	text-align:right; 
	padding-right:10px; 
}
#tetris-stats-level { 
	font-weight:bold; 
}
#tetris .stats .time { 
	text-align:right; 
	padding-right:10px; 	
}
#tetris-stats-time { 
	font-weight:bold; 
}
#tetris .stats .apm { 
	text-align:right; 
	padding-right:10px; 
}
#tetris-stats-apm { 
	font-weight:bold; 
}
#tetris .stats .lines { 
	text-align:right; 
	padding-right:10px; 
}
#tetris-stats-lines { 
	font-weight:bold; 
}
#tetris .stats .score { 
	text-align:right; 
	padding-right:10px; 
}
#tetris-stats-score { 
	font-weight:bold; 
}
#tetris-area {
	background:#fff;
	background-image:url(../images/tetris_right.jpg);
	position:absolute;
	width:168px;
	height:308px;
	left:131px;
	top:1px;
	overflow:hidden;
}
#tetris .block0,
#tetris .block1,
#tetris .block2,
#tetris .block3,
#tetris .block4,
#tetris .block5,
#tetris .block6 {
	position:absolute;
	width:13px;
	height:13px;
	border:0.5px solid #fff;
}
#tetris .block0,
#tetris .block1 {
	background:#6699ff;
}
#tetris .block2,
#tetris .block3 {
	background:#ff6600;
}
#tetris .block4 {
	background:#ffac1c;
}
#tetris .block5 {
	background:#baa68e;
}
#tetris .block6 {
	background:#ff0000;
}
#tetris .window {
	background:#efe8de;
	position:absolute;
	width:168px;
	height:308px;
	left:131px;
	top:1px;
	z-index:5;
	display:none;
}
#tetris .window .top {
	position:relative;
	background:#eae0d1;
	color:#666666;
	font:11px tahoma;
	letter-spacing:+1px;
	height:20px;
	line-height:20px;
	vertical-align:middle;
	border-bottom:1px solid #ffffff;
	text-indent:10px;
}
#tetris .window .top .close {
	position:absolute;
	background:#eae0d1;
	font:11px verdana;
	font-weight:bold;
	right:0px;
	top:0px;
	height:20px;
	line-height:19px;
	text-indent:7px;
	width:21px;
	border-left:1px solid #ffffff;
	cursor:pointer;
}
#tetris .window .top .close:hover {
	background:#efe8de;
}
#tetris .window .content {
	font:11px tahoma;
	margin:10px;
}
#tetris .window .content table {
	font:11px tahoma;
}
