﻿/*
 *  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-ChessSansUscf.css");

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

body {
  font-family: 'pgn4web Liberation Sans', sans-serif;
  color: black;
}

#rahmen {
	border-style: solid;
	border-color: #0000FF;
	padding: 1em;
	color: #000000;
	width: 98%;
	max-width: 62em;
	margin-right: auto;
	margin-left: auto;
	text-align: justify;
	margin-top: 0.5em;
	background-image: url('../../holz_hell.jpg');
}

div, span, table, tr, td {
  font-family: 'pgn4web Liberation Sans', sans-serif; /* fixes IE9 body css issue */
}

.boardTable {
  border-style: double;
  border-color: black;
  border-width: 0.2em;
  width: 20em;
  height: 20em;
}

.pieceImage {
  width: 2.2em;
  height: 2.2em;
}

.whiteSquare,
.blackSquare,
.highlightWhiteSquare,
.highlightBlackSquare {
  width: 2.3em;
  height: 2.3em;
  border-style: solid;
  border-width: 0.1em;
}

.whiteSquare {
	border-color: #EFF4EC;
	background: #EFF4EC;
	background-image: url('Brettfarben/helles_Feld_neu.png');
}
.blackSquare {
	border-color: #C6CEC3;
	background: #C6CEC3;
	background-image: url('Brettfarben/dunkles_Feld_neu.png');
}

.highlightWhiteSquare,
.highlightBlackSquare {
	border-style: inset;
	border-color: gray;
	background-color: #FFFF00;
}

.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 {
  font-weight: normal;
  font-size: 1.0em;
}

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

a.move,
a.variation,
.commentMove {
  white-space: nowrap;
}

.comment {
	background: #E0FFFF;
}

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

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

.move {
  color: blue;
  font-weight: 600;
}

.comment,
.variation,
.label {
	color: #990033;
	font-size: 1.0em;
}

a.variation {
	color: #000080;
}

.moveOn,
.variationOn {
	background: #FFFF00;
}

h1 {
	text-align: center;
	font-size: 1.2em;
	color: #000000;
	font-weight: bold;
	margin-bottom: 0.6em;
	margin-top: 0.3em;
	padding-right: 0.2em;
	padding-left: 0.2em;
}

