
html, body {
	height: 100%;
    padding: 0;
    margin: 0;
	overflow-x: hidden;
	overflow-y: hidden;
	background: #fdf6e3;
}
hr {
	border: 0;
	background: #fdf6e3;
	height: 5px;
}
h1 {
	font-size: 100%;
	display: inline;
	margin: 0;
}
img, svg {
    vertical-align: middle;
    border: 0;
}


.wrap {
	height: 100%;
}
#linemarker {
	background: rgba(220,50,47,0.5);
	position: absolute;
	left: 0;
	top: -30px;
	width: 40px;
	height: 22px;
	z-index: 4;
}
#textarea {
	outline: none;
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0);
	box-sizing: border-box;
	border: 0;
	font-family: Consolas, Menlo, monospace;
	color: #657b83;
	padding: 30px 0 0 40px;
	resize: none;
	opacity: 1;
	transition: opacity 0.3s;
}
.CodeMirror {
  height: 100%;
  border: 0;
  width: 100%;
  padding: 22px 0 0 0;
  line-height: 25px;
  font-size: 16px;
  font-family: Consolas, Monaco, monospace;
  opacity: 1;
  transition: opacity 0.3s;
}

.CodeMirror .CodeMirror-linenumber {
  color: #D4CEBD;
  padding-left: 12px
}
.canvas-mode .CodeMirror {
	opacity: 0;
	transition: opacity 1s;
}

#canvas-panner {
	position: absolute;
	z-index: 2;
	width: 33%;
	height: 100%;
	background: rgba(0,0,0,0);
	top: 0;
	right: 20px;
	bottom: 0;
	cursor: move;
}
#linenumbers {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 100%;
	background: #eee8d5;
	color:#D4CEBD
}
#linenumbers.error {
	background: rgba(220,50,47,0.2);
	z-index: 4;
}
#canvas {
	position: absolute;
	cursor: move
}
a, a:active {
	color: #000;
	opacity: 0.5;
	text-decoration: none
}
a:hover {
	color: #000;
	opacity: 0.75;
	text-decoration: none
}
.tools {
	display: block;
	position: absolute;
	z-index: 4;
	top: 20px;
	right: 20px;
	font-family: Calibri, Helvetica, sans-serif;
	font-weight: bold;
	background: #fdf6e3;
	border-radius: 5px;
}
.tools .canvas-tools {
	display: block;
	position: absolute;
	top: 60px;
	right: 0;
	width: 24px;
	opacity: 0;
	transition: opacity 1s;
}
.canvas-mode .canvas-tools {
	opacity: 1;
	transition: opacity 0.3s;
}
.tools img, .tools svg {
	width: 24px;
	height: 24px;
	margin-bottom: 5px;
}
.tools>a {
	margin-left: 5px;
}
.tools>.logo {
	color: #000;
	font-size: 150%;
}
.tools>#tooltip {
	font-size: 90%;
	color: #807C72;
	position: fixed;
	top: 7px;
	right: 20px;
	text-align: right;
	background: #fdf6e3;
	border-radius: 2px;
	padding: 0 5px;
}
.tools > #storage-status {
	display: none;
	color: #000;
	opacity: 0.5;
	font-style: italic;
	position: fixed;
	top: 7px;
	right: 0;
	width: 100%;
	text-align: center;
}
.tools > #storage-status.visible {
	display: block;
}
.tools > #storage-status a {
	border: 2px solid #333;
	padding: 0 5px;
	border-radius: 4px;
	font-style: normal;
	opacity: 1;
}

.sidebar {
	display: none;
	position: absolute;
	z-index: 3;
	top: 0px;
	right:0;
	bottom: 0;
	width: 325px;
	background-color: #fdf6e3;
	box-shadow: -3px 0 6px rgba(0, 0, 0, 0.28);
}
.sidebar.visible {
	display: block;
	overflow: auto;
}
.sidebar .logo-background {
	position: fixed;
	top: 0;
	right: 20px;
	width: 300px;
	height: 70px;
	background: #fdf6e3
}
.content {
	display: block;
	color: #586e75;
	font-family: Consolas, Monaco, monospace;
	padding: 70px 10px 200px 20px;
}
.content p {
	font-family: Calibri, Helvetica, sans-serif
}
.content label{
	display: block;
	font-family: Calibri, Helvetica, sans-serif;
	color: #93a1a1;
	margin-top: 1em;
}
.content h2{
	font-size: inherit;
	display: block;
	font-family: Calibri, Helvetica, sans-serif;
	color: #93a1a1;
	margin-top: 1em;
}
.content b {
	display: inline-block;
	font-weight: normal;
	width: 40%;
	font-family: Calibri, Helvetica, sans-serif;
	color: #93a1a1;
}