/*
 *  Humbeekse Schaakclub is using ChessOnTheBeach.com using an adapted version of
 *  Paolo Casaschi's pgn4web javascript chessboard.
 *  Adaptations were made by Humbeekse Schaakclub based on Steve Mugglin.
 *
 *  The original files for pgn4web javascript chessboard
 *  are copyright (C) 2009 Paolo Casaschi
 *  Information regarding the files, credits, license and 
 *  other details may be found at http://pgn4web.casaschi.net
 */

html, 
body { 
  margin: 0; 
  padding: 0;
}

body {
  font-family: sans-serif;
  color: black;
/*  background: #151515;
*/
  background-image:url('graysquares2.png');
}

.boardTable {
  border-style: double;
  border-color: #162155;
  border-width: 7 px;
}

.pieceImage {
  width: 60;
  height: 60;
}

.whiteSquare,
.blackSquare,
.highlightWhiteSquare,
.highlightBlackSquare {
  width: 60;
  height: 60;
  border-style: solid;
  border-width: 0;
}

.whiteSquare,
.highlightWhiteSquare {
  background-image:url('lightsquare.png');
}

.blackSquare,
.highlightBlackSquare {
  background-image:url('darksquare.png');
}

.highlightWhiteSquare,
.highlightBlackSquare {
  border-color: yellow;
  border-style: solid;
}

.selectControl {
  width: 100% !important;
/* 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 */
}

.buttonControlSpace {
/* a "width" attribute here must use the !important flag to override default settings */
}

.move,
.moveOn {
  color: black;
  font-weight: normal;
  text-decoration: none;   
}

.moveOn {
  background: #D2D2D2;
}

.comment,
.nag
{
  color: black;
}

.nag {
  font-style: italic;
}

