.tetris table
{
    border-collapse: collapse;
    opacity: 0.75;
    filter: alpha(opacity=75);
}
.tetris #tetrisBoard
{
    float: left;
}
.tetris #tetrisBoard td, .tetris #nextTable td
{
    width: 25px;
    height: 25px;
    overflow: hidden;
    background-color: #cccccc;
    border: 1px solid #c8c8c8;
}
.tetris #tetrisBoard td#shape, .tetris td#nextShape
{
    background-color: steelblue;
}
.tetris #tetrisBoard td#set
{
    background-color: maroon;
}
.tetris table td#next
{
    text-align: center;
    vertical-align: middle;
    width: 125px;
    height: 125px;
    background-color: #cccccc;
}
.tetris #controls
{
	float: left;
	padding-left: 10px;
}
.tetris .page
{
    margin: 0 auto;
    width: 550px;
}

