#crosswordcontainer {
  width: 100%;
  max-width: 100%;
  margin: 20px auto;
}
#crosswordtablecontainer {
	overflow-x:auto;
	background-color: #ebebeb;
	padding:10px 20px 20px 20px;
}
#crosswordtable {
	border:none;
	padding: 0;
	margin: 0 auto;
}
#crosswordtable td {
	width: 21px;
	min-width: 21px;
	max-width: 21px;
	min-height:21px;
	max-height:21px;
	position:relative;
}
#crosswordtable td.cell {
}
#crosswordtable td input[type="text"] {
	width: 13px;
	height: 13px;
	border: none;
	margin: 0;
	text-transform:uppercase;
	padding: 4px;
	line-height: 14px;
	text-align: center;
	font-size: 16px;
	background-color:#ffffff;
	z-index:10;
}
#crosswordtable td.green input[type="text"] {
	color: #0C3;
}
#crosswordtable td.red input[type="text"] {
	color:#C03;
}
#crosswordtable td input[type="text"]::placeholder {
  color: #cccccc;
  opacity: 1; /* Firefox */
}

#crosswordtable td input[type="text"]::-ms-input-placeholder { /* Edge 12 -18 */
  position:relative;
  color: #cccccc;
  z-index:5;
}
#crosswordtable td.across {
	border-top: solid 1px #000000;
	border-left: solid 1px #000000;
	border-bottom: solid 1px #000000;
}
#crosswordtable td.down {
	border-top: solid 1px #000000;
	border-left: solid 1px #000000;
	border-right: solid 1px #000000;
}
#crosswordtable td.crossing {
	border-top: solid 1px #000000;
	border-left: solid 1px #000000;
	border-right: none;
	border-bottom: none;
}
#crosswordtable td.across.end, #crosswordtable td.crossing.across.end {
	border-right: solid 1px #000000;
}
#crosswordtable td.down.end, #crosswordtable td.crossing.down.end {
	border-bottom: solid 1px #000000;
}

.cellnumber {
	position: absolute;
	top:0;
	left: 0;
	font-size: 8px;
	color: #000000;
	padding: 1px;
	z-index:20;
}
#crosswordclues .clue {
	font-size: 13px;
	line-height: 140%;
}
#crosswordclues .cluetext {
	display: inline-block;
	width: calc(100% - 30px);
	float: right;
}
.whiteback {
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color: #ffffff;
	z-index:1;
}
.puzzlebuttons {
	padding-top: 20px;
}
a.togglebtn {
	font-family: 'Open Sans', sans-serif;
	color: #ffffff;
	display: inline-block;
	border: none;
	font-size: 13px;
	margin:0;
	padding: 5px 15px;
	text-align: center;
	text-transform: uppercase;
	background-attachment: scroll;
	background-color: #b99650;
	background-image: none;
	background-repeat: repeat;
	background-position: 0 0;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-khtml-border-radius: 4px;
	border-radius: 4px;
	position: relative;
	text-decoration: none;
}
.small {
	font-size: 80%;
}


