body {
	background-color: #282828;
}
tr, label, h1, h4, p {
	/*background-color: #282828;*/
	color: #ffcc00;
	text-shadow: 0 0 2px #ffcc00ba, 0 0 20px #ffcc00;
	font-family: 'Courier New', monospace;
}

label {
	vertical-align: middle;
}

table {
	width: 100%;
}

td, th {
	width: auto;
}

td {
	background-color: #3a3734;
	border: 2px solid #ffb000;
	border-radius: 5px 15px;
}

.adv {
	visibility: collapse;
}

.adv.show {
	visibility: unset;
}

#solution tbody tr td, #solution tbody tr th {
	min-width: 145px;
	width: auto;
}

#alert_0 {
	color: red;
	text-shadow: 0 0 2px #ff0000b8, 0 0 20px #ff0000bd;
	font-family: 'Courier New', monospace;
}

#alert_1 {
	color: #ffcc00;
	text-shadow: 0 0 2px #ffcc00ba, 0 0 20px #ffcc00;
	font-family: 'Courier New', monospace;
}

#alert_1.splash {
	color: red;
	text-shadow: 0 0 2px #ff0000b8, 0 0 20px #ff0000bd;
}

#saved tbody tr td:nth-child(1), #saved tbody tr th:nth-child(1) {
	width: 100px;
	min-width: 100px;
}

#saved tbody tr td:nth-child(2), #saved tbody tr th:nth-child(2) {
	width: 200px;
	min-width: 200px;
}

#saved tbody tr td:nth-child(3), #saved tbody tr th:nth-child(3), #saved tbody tr td:nth-child(4), #saved tbody tr th:nth-child(4), #saved tbody tr td:nth-child(7), #saved tbody tr th:nth-child(7), #saved tbody tr td:nth-child(8), #saved tbody tr th:nth-child(8) {
	width: 80px;
	min-width: 80px;
}

#saved tbody tr td:nth-child(5), #saved tbody tr th:nth-child(5), #saved tbody tr td:nth-child(6), #saved tbody tr th:nth-child(6) {
	width: 100px;
	min-width: 100px;
}

#solution tbody tr td:nth-child(1), #solution tbody tr th:nth-child(1) {
	width: 30px;
	min-width: 30px;
}

#solution tbody tr td:nth-child(3), #solution tbody tr th:nth-child(3) {
	width: 200px;
	min-width: 200px;
}

#solution tbody tr td:nth-child(4), #solution tbody tr th:nth-child(4), #solution tbody tr td:nth-child(5), #solution tbody tr th:nth-child(5), #solution tbody tr td:nth-child(8), #solution tbody tr th:nth-child(8) {
	width: 80px;
	min-width: 80px;
}

#solution tbody tr td:nth-child(6), #solution tbody tr th:nth-child(6), #solution tbody tr td:nth-child(7), #solution tbody tr th:nth-child(7), #solution tbody tr td:nth-child(9), #solution tbody tr th:nth-child(9) {
	width: 100px;
	min-width: 100px;
}

/*#solution tbody tr td:nth-child(2) {
	font-size: small;
	line-height: 10px;
	text-align: left;
}*/
input {
	background-color: #282828b5;
	color: #ffcc00;
	text-shadow: 0 0 2px #ffcc00ba, 0 0 20px #ffcc00;
	font-family: 'Courier New', monospace;
}
textarea {
	background-color: #282828b5;
	color: #ffcc00;
	text-shadow: 0 0 2px #ffcc00ba, 0 0 20px #ffcc00;
	font-family: 'Courier New', monospace;
}
button {
	background-color: #000000;
	color: #ffcc00;
	text-shadow: 0 0 2px #ffcc00ba, 0 0 20px #ffcc00;
	font-family: 'Courier New', monospace;
}
select {
	background-color: #000000;
	color: #ffcc00;
	text-shadow: 0 0 2px #ffcc00ba, 0 0 20px #ffcc00;
	font-family: 'Courier New', monospace;
}

select:disabled {
	color: #ccaa00;
	border-color: #282828b5;
}

 /* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
	margin-bottom: 10px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #ffcc00ba;
}

input:focus + .slider {
  box-shadow: 0 0 1px #ffcc00;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}