#tetris_wrapper
{
	position:relative;

	width:450px;
	height:500px;
	background-image:url(images/bg1.png);
	overflow:hidden;
}

.main_gate
{
	position:relative;
	left:0px; top:0px;
	z-index:1000;
	width:450px;
	height:500px;
	overflow:none;
}

.main_gate div.gate_left
{
	position:absolute;
	left:0px;
	top:0px;
	z-index:1000;

	width:225px;
	height:500px;

	background-image:url(images/gate_left.png);
}
.main_gate div.gate_right
{
	position:absolute;
	left:225px;
	top:0px;
	z-index:1000;

	width:225px;
	height:500px;

	background-image:url(images/gate_right.png);
}
.main_gate div.start_btn
{
	position:absolute;
	left:185px;
	top:310px;
	z-index:1000;

	/*width:174px;
	height:189px;*/
	/*background-image:url(images/start_off.png);*/
	cursor:pointer;
}

/*  J::  Next Piece */
.np_container
{
	position:absolute;
	left:320px;
	top:70px;
	z-index:10;

	width:123px;
	height:118px;
	background-image:url(images/np_container.png);
}
.np_container img.header
{
	position:absolute;
	left:7px;
	top:-20px;
	border:0px;

	width:110px;
}

#np_img.np_0
{
	position:absolute;
	left:50px;
	top:20px;
	width:20px;
	height:80px;
	background-image:url(images/np_0.png);
}
#np_img.np_1
{
	position:absolute;
	left:30px;
	top:40px;
	width:60px;
	height:40px;
	background-image:url(images/np_1.png);
}
#np_img.np_2
{
	position:absolute;
	left:40px;
	top:30px;
	width:40px;
	height:60px;
	background-image:url(images/np_2.png);
}
#np_img.np_3
{
	position:absolute;
	left:40px;
	top:30px;
	width:40px;
	height:60px;
	background-image:url(images/np_3.png);
}
#np_img.np_4
{
	position:absolute;
	left:40px;
	top:30px;
	width:40px;
	height:60px;
	background-image:url(images/np_4.png);
}
#np_img.np_5
{
	position:absolute;
	left:40px;
	top:30px;
	width:40px;
	height:60px;
	background-image:url(images/np_5.png);
}
#np_img.np_6
{
	position:absolute;
	left:40px;
	top:40px;
	width:40px;
	height:40px;
	background-image:url(images/np_6.png);
}



/*  Score  */
.score_container
{
	position:absolute;
	left:330px;
	top:200px;
	z-index:10;

}
.score_container div.scoreField
{
	position:relative;
	left:-25px;
	top:2px;
	width:140px;
	height:35px;
	border:1px solid black;
	padding:0px 5px 8px 0px;
	marign:0px;
	font-family:comic sans ms;
	font-size:20px;
	color:black;
	font-weight:bold;
	text-align:right;
	background-color:white;
}

.level_container
{
	position:absolute;
	left:330px;
	top:280px;
	z-index:10;
}
.level_container div.levelField
{
	position:relative;
	left:-25px;
	top:2px;
	width:140px;
	height:35px;
	border:1px solid black;
	padding:0px 5px 8px 0px;
	marign:0px;
	font-family:comic sans ms;
	font-size:20px;
	color:black;
	font-weight:bold;
	text-align:right;
	background-color:white;
}

.lines_container
{
	position:absolute;
	left:330px;
	top:360px;
	z-index:10;
}
.lines_container div.linesField
{
	position:relative;
	left:-25px;
	top:2px;
	width:140px;
	height:35px;
	border:1px solid black;
	padding:0px 5px 8px 0px;
	marign:0px;
	font-family:comic sans ms;
	font-size:20px;
	color:black;
	font-weight:bold;
	text-align:right;
	background-color:white;
}
