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


.boardTable {
  border-style: double;
  border-color: black;
  border-width: 3px;
  width: 482px;
  height: 482px;
  box-shadow: 10px 05px 05px #777777;
}

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

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

.whiteSquare,
.highlightWhiteSquare {
  border-color: #D0D0D0; 
  background: #D0D0D0;
}

.blackSquare,
.highlightBlackSquare {
  border-color: #303030; 
  background: #303030;
}

.highlightWhiteSquare,
.highlightBlackSquare {
  border-style: inset; 
  border-color: #FFFF77 !important;
}

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

.optionSelectControl {
}

.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,
.variation,
.comment {
  line-height: 1.4em;
  font-weight: normal;
}

.move,
.variation,
.commentMove {
  font-family: 'pgn4web ChessSansUsual', 'pgn4web Liberation Sans', sans-serif;
}

.move,
.variation {
  text-decoration: none;
}

a.move:hover, a.variation:hover {
  text-decoration: underline;
}

.move {
  color: black;
}

.comment,
.variation,
.label {
  color: gray;
}

a.variation {
  color: gray;
}

.moveOn,
.variationOn {
/*  background: #DAF4D7; */
  background: #FFFF90
}


/*

below added on usa2017.com

*/

.board_main {
	width: 490px;
	height: 520px;
	border: 1px solid #CCCCCC;
}


.board_cp {
	width: 280px;
	height: 520px;
	border: 1px solid #CCCCCC;
	padding : 01px 05px 01px 05px;
	overflow: scroll;
}

.board_info {
/*  width: 770px; */
	font-family : "Courier New", "Courier", "Andale Mono", monospace;
	font-size : 20px;
	border: 1px solid #CCCCCC;
}




/*

This is enda...
of template.css

*/	