
#main {
	height: calc(100% - 8vh);
	overflow-x: scroll;
	/*line-height: calc(100% - 8vh);*/
	position: relative;
	z-index: 0;
}

#inputArea {
	display: inline-block;
	text-align: center;
	vertical-align: center;
	border: none;
	border-collapse: separate;
	cellspacing: 0;
	border-spacing: 0;
	position: relative;
	z-index: 0;
}
#inputArea > tbody {
	border: none;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 0;
}
#inputArea > tbody > tr {
	border: none;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 0;
}
#inputArea > tbody > tr > td {
	border: none;
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 1;
}

/*
#inputArea > tbody > tr > td > .canvasParent {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: green;
	position: relative;
	z-index: 1;
}
*/

.inputPanel, .disabledInputPanel {
	-ms-touch-action: none;
	width: 60vh;
	height: 50vh;
	padding: 0;
	margin: 0;
	border-top: 2px solid #777;
	border-bottom: 2px solid #777;
	border-left: 1px solid #777;
	border-right: 1px solid #777;
	position: relative;
}

#writingLines {
	position: fixed;
	width: 100%;
	top: calc(8vh + (50vh - 4vh - 25vh) + 11vh);
	/* ^ calc(titleBarH + topPaddingH + topLineY) */
	height: 24vh; /* bottom line Y pos - top line Y pos*/
	border-top: 3px solid #CCC;
	border-bottom: 3px solid #CCC;
	z-index: -20;
}

.templateText {
	position: absolute;
	/* top: calc((50vh - 4vh - 25vh) + 8vh); */
	/* ^ calc(topPaddingH + customValue) */
	top: 8vh;
	width: 60vh;
	line-height: 30vh;
	font-family: "Comic Sans MS", cursive, sans-serif;
	font-size: 30vh;
	text-align: center;
	color: #BBBBBB;
	z-index: -15;
}

.widthMarker {
	position: absolute;
	/* top: calc(50vh - 4vh - 25vh); */
	/* ^ calc(topPaddingH) */
	top: 0;
	height: calc(50vh + 2px);
	z-index: -15;
	max-width: 60vh;
}

.widthMarker:nth-child(3) {
	border-right: 2px solid #BBB;
	/* background-color: rgba(255,0,0,0.3); */
	/* background: repeating-linear-gradient(
		45deg,
		rgba(0,0,0,0),
		rgba(0,0,0,0) 6px,
		rgba(0,0,0,0.2) 6px,
		rgba(0,0,0,0.2) 9px
	); */
	background: repeating-linear-gradient(
		45deg,
		#FAFAFA,
		#FAFAFA 6px,
		#CCCCCC 6px,
		#CCCCCC 9px
	);
}

.widthMarker:nth-child(4) {
	border-right: 2px solid #CCC;
	/* background-color: rgba(0,255,0,0.3); */
}

.widthMarker:nth-child(5) {
	border-left: 2px solid #BBB;
	/* background-color: rgba(0,0,255,0.3); */
	background: repeating-linear-gradient(
		45deg,
		#FAFAFA,
		#FAFAFA 6px,
		#CCCCCC 6px,
		#CCCCCC 9px
	);
}

#styleQualityToggleButton {
	cursor: pointer;
}

#importExportButton {
	cursor: pointer;
}

