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

@import url("fonts/pgn4web-fonts.css");

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

body {
  font-family: 'pgn4web Liberation Sans', sans-serif;
  color: #000000;
  background: #FFFFFF;
}

a {
  text-decoration: none;
  color: black;
}

.boardTable {
  border-style: solid; 
  border-color: #354263;
  border-width: 3px;
}

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

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

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

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

.highlightWhiteSquare,
.highlightBlackSquare {
  border-color: #0FFF0F;
  border-style: solid;
  border-width: 2; 
}

.selectControl {
/* a "width" attribute here must use the !important flag to override default settings */
  width: 450px !important;
  font-size: 90%;
  padding: 5px;
  background-color: #7084B6;
  border-color: #7084B6;
  color: white;
  font: Courier;
  font-weight: normal;  
}

.buttonControlPlay,
.buttonControlStop,
.buttonControl {
/* a "width" attribute here must use the !important flag to override default settings */
  background-color: #7084B6;
  border-color: #7084B6;
  border-width: 0;
  width: 30px !important;
  color: #white;
  font-weight: normal;
}

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

.header,
.headerNosize,
.headerHighlighted,
.headerHighlightedNosize,
.helplinkNosize,
.helplinkNosizeHighlighted,
.move,
.moveOn,
.comment,
.nag {
  text-decoration: none;   
}

.header,
.headerHighlighted {
  font-size: 75%;
}

.move,
.moveOn,
.comment {
  font-size: 70%; 
}

.move,
.moveOn {
  font-family: 'pgn4web ChessSansUscf', 'pgn4web Liberation Sans', sans-serif;
  line-height: 1.4em;
}

.helplinkNosize {
  color: #BFBAA5;
}

.header,
.headerNosize,
.move {
  color: #615F54;
}

.headerHighlighted,
.headerHighlightedNosize,
.moveOn {
  color: black;
  background: #ffffff; /* #E6CCB3; */ /* #F5B371; */
}

.comment,
.nag {
  color: #A0B4F6;
  line-height: 1.4em;
}

.movebox {
  scrollbar-base-color: #A0B4F6;
  text-align: justify;
}

