body {
	width: 1000px;
	margin: 0 auto;
}

#chessDesk {
	width: 700px;
	height: 700px;
	border: 1px solid #ccc;
	float: left;
}

.white, .black {
	width: 10%;
	height: 10%;
}

.black {
	background-color: #ccc;
}

#chessDesk td {
	font-size: 50px;
	text-align: center;
	align-items: center;
	cursor: pointer;
	-webkit-user-select: none;  /* Chrome all / Safari all */
	-moz-user-select: none;     /* Firefox all */
	-ms-user-select: none;      /* IE 10+ */
	user-select: none;          /* Likely future */
}

.active {
	box-shadow: 0 0 20px 5px green inset;
}

.possibleMove {
	box-shadow: 0 0 20px 5px #2DBB28 inset;
	opacity: 0.5;
}

#left-side {
	width: 296px;
	height: 700px;
	float: right;
	border: 2px solid black;
}

#turn {
	text-align: center;
	padding: 10px;
	font-weight: bold;
	background-color: #000;
	color: #fff;
}

#log {
	border: 1px solid black;
	height: 300px;
	margin-top: 0px;
	padding: 0px;
	overflow-y: scroll;
}

#log li {
	list-style: none;
	font-size: 13px;
	padding-left: 10px;
}

#reset {
	width: 100%;
}
.killedSoldiers li {
	list-style: none;
}
.darks {
	float: left;
	margin-left: -30px;
	/*border: 1px solid black;*/
	text-align: center;
	height: 50px;
}
.lights {
	float: right;
	margin-right: 10px;
	/*border: 1px solid black;*/
	text-align: center;
	height: 50px;
}
