#game-report { font: 12pt Arial, sans-serif; }
#game-report h3 { color: #1F78B4; font-size: 100%; }

/* board */
#game-container table {
	border-collapse: collapse;
	width: 350px;
}

#game-container > table th {
	padding-bottom: 10px;
	position: relative;
	height: 1em;
}
#game-container > table th.bar-bottom {
	padding-bottom: 9px;
}

#game-container > table th > div.col-legend {
	right: -10px;
	width: 20px;
	text-align: center;
	position: absolute;
	top: 0;
}

#game-container > table td.frow {
	padding-right: 5px;
	font-weight: bold;
	position: relative;
	width: 1em;
}
#game-container > table td.frow.bar-right {
	padding-right: 4px;
}

#game-container div.row-legend {
	line-height: 1em;
	position: absolute;
	bottom: -.5em;
}

#game-container .game-cell {
	border: 1px solid #E8E8E8;
	padding: 1px;
	width: 60px;
	height: 60px;
	text-align: center;
}

#game-container .game-cell.bar-top {
	border-top: 3px solid black;
	padding-top: 0;
}
#game-container .game-cell.bar-right {
	border-right: 3px solid black;
	padding-right: 0;
}
#game-container .game-cell.bar-bottom {
	border-bottom: 3px solid black;
	padding-bottom: 0;
}
#game-container .game-cell.bar-left {
	border-left: 3px solid black;
	padding-left: 0;
}


/* button bar */
#game-report .button-bar {
	display: inline-block;
	margin: 1em 5px;
	vertical-align: middle;
}
#game-report .button-bar button {
	background-color: #E0E0E0;
	border: none;
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.428;
	margin: 0;
	padding: .5em 1.5em;
	text-align: center;
	white-space: nowrap;
}
#game-report .button-bar button:hover, #game-report .button-bar button:focus, #game-report .button-bar button:active {
	background-color: #FF9800;
	color: #FFFFFF;
	cursor: pointer;
}
#game-report .button-bar button:active { background-color: #EF6C00; }

/* move table */
#move-table { vertical-align: top; padding-left: 1.5em; }
#move-table > div{
    max-height: 633px;
    overflow-y: auto;
	width: 400px;
}

#move-table table {
    border-collapse: collapse;
    margin: 0 auto;
    width: 385px;
}

#move-table tr { cursor: pointer; }
#move-table tr.zebra { background-color: #e5e8ff; }
#move-table tr#cur-move th { border-right: none;}
#move-table tr#cur-move td { border-left: none; border-right: none; }
#move-table tr#cur-move td:last-child { border-right: 1px solid #bbb; }

#move-table tr#cur-move {
    background: #A8D800;
    cursor: default;
    border-left: none;
    border-right: none;
}

#move-table td, #move-table th {
    border: 1px solid #ddd;
    padding: 5px 5px;
    font-size: 12px;
    text-align: center;
}

#move-table td { font-family: monospace; }
#move-table tbody th { text-align: right; width: 1em; }

#move-table thead th {
    background-color: #eeeeee;
    padding-left: 2px;
    padding-right: 2px;
}

