/*
 *  pgn4web javascript chessboard
 *  copyright (C) 2009 Paolo Casaschi
 *  see README file and http://pgn4web.casaschi.net
 *  for credits, license and more details
 */

.boardTable {
  border-style: dashed; 
  border-color: black;
  border-width: 1px;
  margin-right: 10px;
}

.pieceImage {
  width: 36;
  height: 36;
}

.whiteSquare,
.blackSquare,
.highlightWhiteSquare,
.highlightBlackSquare {
  width: 40;
  height: 40;
}

.whiteSquare,
.highlightWhiteSquare {
  background: #EFF4EC;
}

.blackSquare,
.highlightBlackSquare {
  background: #C6CEC3;
}

.highlightWhiteSquare,
.highlightBlackSquare {

}

.selectControl {
/* a "width" attribute here must use the !important flag to override default settings */
}

.buttonControlPlay,
.buttonControlStop,
.buttonControl {
/* a "width" attribute here must use the !important flag to override default settings */
	background-color: #fffd68;
}

.buttonControlSpace {
/* a "width" attribute here must use the !important flag to override default settings */
}

.GameButtonsForm {
	padding: 0;
	margin: 0;
}

.move,
.moveOn {
  color: black;
  font-weight: normal;
  text-decoration: none;   
}

.moveOn {
  background: #F4D83D;
}

.comment,
.nag
{
  color: gray;
}

.nag {
  font-style: italic;
}


