*,
*:before,
*:after {
	box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-weight: normal;
	vertical-align: baseline;
	background: transparent;
}

article,
aside,
figure,
header,
footer,
nav,
img,
section,
details,
summary,
main {
	display: block;
}

address {
	font-style: normal;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

pre,
code,
kbd,
samp {
	font-family: monospace, sans-serif; /* standardize monospaced elements */
	white-space: pre; /* CSS 2 */
	white-space: pre-wrap; /* CSS 2.1 */
	white-space: pre-line; /* CSS 3 (and 2.1 as well) */
	word-wrap: break-word; /* IE */
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 2px dashed blue;
	text-decoration: none;
	color: blue;
}

abbr[title]:hover,
dfn[title]:hover {
	cursor: help;
}

abbr[title]::after,
dfn[title]::after {
	content: ' (' attr(title) ')';
}

@media only all and (min-width: 900px) {
	abbr[title]::after,
	dfn[title]::after {
		content: "";
	}
}

big { /* same as .big-text */
	font-size: 140%;
}

small { /* same as .small-text */
	font-size: 80%;
}

strong,
b {
	font-weight: bold;
}

sub,
sup { /* Make sure sup and sub don't mess with line-heights:http://gist.github.com/413930 */
	position: relative;
	font-size: 75%;
	line-height: 0;
}

sub {
	bottom: -0.25rem;
}

sup {
	top: -0.5rem;
}

img,
object,
embed {
	display: block;
	max-width: 100%;
}

hr {
	display: block;
	height: 1px;
	margin: 0;
	padding: 0;
}

a {
	color: inherit;
}

a:link,
a:visited,
a:hover,
a:active {
	text-decoration: none;
}

html {
	box-sizing: border-box;
	overflow-y: scroll; /* force a vertical scrollbar to prevent a jumpy page */
	overflow-wrap: break-word;
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	font-size: 100%; /* This means 16px by default */
	font-weight: normal;
}

body {
	width: 100%;
	min-width: 320px;
	font-family: 'Roboto', sans-serif;
	background-color: lightblue;
}

h1 {
	width: 210px;
	padding: 10px 15px;
	font-size: 1.1em;
	font-weight: bold;
	line-height: 2;
	text-transform: uppercase;
	color: #fff35c;
}

p {
	margin: 0 0 20px;
	font-size: 1.2em;
	line-height: 1.5;
}

table,
tr,
td {
	box-sizing: content-box;
	border-collapse: collapse;
}

th {
	padding: 10px;
	border: none;
	background-color: #000;
	color: #fff;
	text-align: center;
}

td {
	width: 100px;
	height: 100px;
	margin: 0;
	border: none;
	background-color: #ccc;
}

button {
	width: 210px;
	height: 100%;
	margin: 0;
	padding: 12px 15px;
	border: none;
	border-radius: 0;
	box-shadow: none;
	font-size: 1em;
	font-weight: bold;
	color: #ccc;
	text-align: left;
	background-color: transparent;
}

button:hover {
	color: #fff !important;
	background-color: #ff6600;
}

#controls {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: stretch;
	align-content: flex-start;
	background-color: #3f3f3f;
}

#controls ul {
	width: 210px;
	margin: 0;
	padding: 0;
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 10;
	list-style-type: none;
}

#controls li {
	width: 210px;
	margin: 0;
	list-style-type: none;
}

#controls a {
	display: block;
	width: 210px;
	padding: 12px 15px;
	color: #ccc;
	background-color: #3f3f3f;
}

#controls a:hover {
	background-color: #ff6600;
	color: #fff;
}

#controls a.selected {
	color: #fff;
}

#controls .field {
	flex-basis: content;
	position: relative;
}

#play-button {
	color: #ff6600;
}

#column1 {
	width: 500px;
	float: left;
}

#column2 {
	width: calc(100% - 500px - 200px);
	float: left;
}

#column3 {
	width: 200px;
	float: left;
}

#statusbox {
	padding: 20px;
}

#statusbox p {
	color: black;
}

footer {
	padding: 10px;
	text-align: center;
	color: #fff;
	background-color: #000;
}

footer p {
	color: white;
}

.clear-floats:before,
.clear-floats:after {
	display: block;
	height: 0;
	overflow: hidden;
	visibility: hidden;
	content: "\0020";
}
.clear-floats:after {
	clear: both;
}

.hide {
	display: none;
}

.unused {
	background-color: #bbb;
}

.used {
	background-color: #eee;
}

.red {
	color: #f00;
}

.small-text {
	font-size: 80%;
}