/*
 *  pgn4web javascript chessboard
 *  copyright (C) 2009-2013 Paolo Casaschi
 *  see README file and http://pgn4web.casaschi.net
 *  for credits, license and more details
 */


@import url("fonts/pgn4web-font-LiberationSans.css");

@import url("fonts/pgn4web-font-ChessSansUsual.css");
div, span, table, tr, td {
  font-family: 'pgn4web Liberation Sans', sans-serif; /* fixes IE9 body css issue */
}

div#inhalt_1_board { width:43%; display:inline-block; padding-right:6px;}
div#inhalt_2_notation { margin-left: 1em; width:55%; display:inline-block; vertical-align:top;}
@media only screen and (max-width: 1400px) {
div#inhalt {padding:0;}
}
@media only screen and (max-width: 900px) {
div#inhalt_1_board, div#inhalt_2_notation {width:100%; display:block; margin: 0 auto; padding-top:1em;}
}


.boardTable {
  border-style: double;
  border-color: black;
  border-width: 3px;
  width: 342px;
  height:342px;
}

.pieceImage {
  width: 36px;
  height: 36px;
}

.whiteSquare,
.blackSquare,
.highlightWhiteSquare,
.highlightBlackSquare {
  width: 38px;
  height: 38px;
  border-style: solid;
  	border-width: 2px;
}

.whiteSquare,
.highlightWhiteSquare {
  border-color: #EEE0BB;   background: #EEE0BB;
}

.blackSquare,
.highlightBlackSquare {
  border-color: #DAB680;
   background: url("images/black5.gif");
}
.highlightWhiteSquare,
.highlightBlackSquare {
 border-width: 2px;
 border-style: solid;
  border-color: #A0A0A0 white white #A0A0A0;
}


.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.5em;
  font-weight: normal;
}

.move,
.variation,
.commentMove {
  font-family: 'pgn4web ChessSansMerida', 'pgn4web Liberation Sans', sans-serif; color: #b00000;
}

a.move,
a.variation,
.commentMove {
  white-space: nowrap;
}

.move,
.variation {
  text-decoration: none;
}

a.move:hover, a.variation:hover {
  text-decoration: underline;
}

.move,
.label {
 color: black;
}

.label {font-size:1.0em; line-height:1.2em;}

.comment,
.variation {color: #4040b0;
}

a.variation {
  color: grey;
}

.moveOn,
.variationOn {
  background: #FFE000;
}

div.flextable {
  display: table;
 width: 100%
  border:none;
}

div.flextable_tr {
  display: table-row;
}

div.container {
  display: table-cell;
  border:none;
}

div.notation {
  font-size:1.1em
}
.mobileonly {display:none;}

@media only screen and (max-width: 900px) {
div.notation { font-size:1em}
.mobileonly {display:block; font-size:1em;}
}

@media only screen and (max-width: 550px) {
div.flextable, div.container {
  display: block;
 width: 100%;
}}