body {
	font-family:"Calibri";
	padding:0;margin:0;
}
textarea {outline:grey dotted thin;resize:none;padding:5px;}
iframe {border:none;}
#layout {
	position:relative;
	width:100vw;height:100vh;
	margin:0;
}
#top {
	position:absolute;
	z-index:2;
	width:100vw;
	font-family:Similibit;
	color:white;
}
#top>div{
	height:24px;
	background-color:grey;
	font-size:24px;
	text-align:center;
	box-shadow:0 0 5px lightgrey;
}
#docs {
	color:pink;
	text-decoration:none;
	position:absolute;
	right:0; 
	font-size:16px;
	padding:4px;
}
#docs:hover {
	color:white;
}
#menubar {
	z-index:2;
	font-family:Similibit;
	position:absolute;
	display:inline-block;
	background-color:lightgrey;
	top:-16px;left:0;
	width:100%;
	height:16px;
	font-size:16px;
	overflow:hidden;
}
#menubar :first-child{margin-left:4px;}
.button {
	color:white;
	cursor:pointer;
	text-decoration:none;
}
.button:hover {
	color:salmon;
}
.button:active {
	background-color:white;
	color:black;
}
.tab {
	float:right;
	color:white;
	cursor:pointer;
	text-decoration:none;
	margin-right:10px;
	width:50px;
	text-align:center;
}
.tab:hover {
	background-color: white;
	color:salmon;
}
.tab.selected {
	background-color: whitesmoke;
	color:salmon;
	border:2px solid black;
	border-bottom:none;
	border-top:none;
}
#tabcss.tab.selected {
	background-color: darkslategray;
	color:salmon;
}
#left {
	position:absolute;
	top:0;bottom:0;
	left:0;right:50%;
	padding:5px;margin:0;
	margin-top:40px;
	background-color: whitesmoke;
}
#right {
	position:absolute;
	top:0;bottom:0;
	left:50%;right:0;
	padding:5px;margin:0;
	margin-top:24px;
	box-shadow:0 0 20px lightgrey;
}
#right.drag {
	box-shadow:0 0 20px grey;
}
#handle {
	position:absolute;
	z-index:5;
	top:0;bottom:0;
	right:-10px;
	width:16px;
	background-color:transparent;
	cursor:ew-resize;
}
#handle.drag {
	left:0;
	width:100vw;
}
#frame {
	width: 100%;
    overflow: auto;
    height: 100%;
    box-sizing: border-box;
}
#menoeditor {
	border: none;
	width: 100%;
	height: 100%;
	padding: 0;
	background-color: transparent;
	outline: none;
	resize: none;
	word-break:break-word;
	white-space:pre-wrap;
	text-overflow: clip;
}
#menoeditor::selection {
	background-color: #aaa;
}
#csseditor {
	border: none;
	width: 100%;
	height: 100%;
	padding: 5px;
	margin: -5px;
	background-color: darkslategray;
	color:#e3e3e3;
	outline: none;
	resize: none;
	word-break:break-word;
	white-space:pre-wrap;
	text-overflow: clip;
}
#csseditor::selection {
	background-color: grey;
}