/*
 *  ChessOnTheBeach.com is using an adapted version of
 *  Paolo Casaschi's pgn4web javascript chessboard.
 *  Adaptations were made by 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-image:url('bgheadingpurple.png');


}



.boardTable {

  border-style: double; 

  border-color: #333360;

  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 {

/* 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: #DAF4D7;

}



.comment,

.nag {

  color: gray;

}




