/*
 *  pgn4web javascript chessboard
 *  copyright (C) 2009, 2010 Paolo Casaschi
 *  see README file and http://pgn4web.casaschi.net
 *  for credits, license and more details
 */

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

body {
  font-family: verdana;
  color: black;
  background: #ffffff;
}

.boardTable {
  border-style: solid;
  border-color: #a5bde7;
  border-width: 2px;
}

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

.whiteSquare,
.blackSquare,
.highlightWhiteSquare,
.highlightBlackSquare {
  width: 28;
  height: 28;
}

.whiteSquare,
.highlightWhiteSquare {
  background: #ffffff;
}

.blackSquare,
.highlightBlackSquare {
  background: #a5bde7;
}

.highlightWhiteSquare,
.highlightBlackSquare {
  background: #FFFFBA;
}

.selectControl {
/* a "width" attribute here must use the !important flag to override default settings */
font-size:10px;
}

.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 */
}

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

.searchPgnExpression {
/* 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: #FFFD54;
}

.comment,
.nag {
  color: gray;
}

span
{
font-size:13px;
color:white;
}