/* 
    Copyright (C) 2006 Lakin Wecker <lakin.wecker@gmail.com>, Michael Simoens <msimoens@gmail.com>
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
*/
.even .even, .odd .odd {
	background-color: #ab906f;
	color: #5a3f38;
}

.even .odd, .odd .even {
	background-color: #5a3f38;
	color: #ab906f;
}

.white-knight { background-image: url("/static/images/knight-white.png"); }
.white-pawn { background-image: url("/static/images/pawn-white.png"); }
.white-rook { background-image: url("/static/images/rook-white.png"); }
.white-bishop { background-image: url("/static/images/bishop-white.png"); }
.white-queen { background-image: url("/static/images/queen-white.png"); }
.white-king { background-image: url("/static/images/king-white.png"); }
.black-knight { background-image: url("/static/images/knight-black.png"); }
.black-pawn { background-image: url("/static/images/pawn-black.png"); }
.black-rook { background-image: url("/static/images/rook-black.png"); }
.black-bishop { background-image: url("/static/images/bishop-black.png"); }
.black-queen { background-image: url("/static/images/queen-black.png"); }
.black-king { background-image: url("/static/images/king-black.png"); }
div#game {
	background-color: #DDD;
	width: 430px;
	margin-top: 20px;
	padding: 15px;
	margin-right: 30px;
	border: thin solid #666;
}

div#information {
	float: left;
	width: 195px;
}

#game h3
{
	font-size: 80%;
	margin: 0px;
	float: none;
	clear: none;
	color: black;
}
div.floatRight {
	float: right;
	
}

h3.PieceBoxName {
}
div.PieceBox {


	border: thin solid #666;
	width: 80px;
	height: 120px;
	overflow: auto;
/*	background-color: #5a3f38;*/
}

div.Bag {
	border: thin solid #666;
	width: 320px;
	height: 120px;
	/*margin: auto;
	margin-top: 25px;*/
	margin-bottom: 15px;
	overflow: auto;
/*	background-color: #ab906f;*/

}
div.Black {
	background-color: #5a3f38;
    border   : 1px solid #666;
}
div.White {
	background-color: #ab906f;
    border   : 1px solid #666;
}
div.Bag * {
	background-color: white;
}

table.Board {
/*	margin: auto;*/
}

div.logBox {
	margin: auto;
	height: 400px;
	width: 800px;
	border: thin solid #666;
	overflow: scroll;
}
div.logBox span {
	font-size: 70%;
}

div.box {
	margin: auto;
	display: block;
	font-family   : Arial;
	font-size     : 14px;
	width         : 40px;
	height        : 40px;
	text-align    : center;
	margin   : 0px;
  	float: left;
}

span.logMsg {
   display      : block;
   font-family  : Verdana;
   font-size    : 15px;
}

div.PieceSpace {
   width    : 40px;
   height   : 40px;
   padding  : 2px;
   border   : 1px solid #666;
   margin   : 0px;
}
div.header {
	margin: auto;
