html, body, #filedrop {
	margin: 0px;
	padding: 0px;
}
body {
	font-size: 12px;
}
#filedrop {
	box-sizing: border-box;
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 99999;
	background: #7fb8e3;
	border: 1em dashed #60a7dc;
	transition: opacity 0.3s ease-out;
	opacity: 0;
}
#filedrop::before {
	content: "Drop ICF Here";
	position: absolute;
	top: calc(50% - 0.5em);
	width: 100%;
	font-size: 4em;
	display: block;
	font-family: sans-serif;
	text-align: center;
	color: #004D81;
}
#main, #controls {
	margin: 1em;
}
#dump, #editor {
	margin: 0px;
	padding: 0px;
	font-family: monospace;
}
#editor {
	border-top: 1px solid #ccc;
}
#editor li {
	list-style-position: inside;
	font-size: 1.5em;
	margin: 0px;
	border-bottom: 1px solid #ccc;
	height: calc(2.5em - 1px);
	padding-top: 1.5em;
}
#dump {
	position: absolute;
	right: 1.5em;
	display: inline-block;
	line-height: 1.5em;
	white-space: pre;
}
.dumperror {
	color: red;
	height: 6em;
	line-height: 6em;
	overflow: hidden;
}
.dumperror span {
	display: inline-block;
	vertical-align: middle;
	line-height: 1.5em;
}
.error {
	color: red;
}
.disabled {
	color: gray;
}
