body {
	margin: 0px; padding: 0px;
	overflow: hidden;
}

#body {
    position: absolute;
    left: 0px;
    top: 0px;
	height: 100%;
    width: 100%;
    transition: left 0.5s;
    box-shadow: -20px 0 5px 20px black;
    z-index: 2;
    background: white;
}
.menu #body {
	left: -300px;
}

#controls {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 300px;
	background: #333;
	color: white;
	padding: 0;
	cursor: default;
    z-index: 0;
    font-family: 'Calibri', sans-serif;
}
#tabs {
	background: #888;
	border-bottom: 1px solid black;
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
	padding: 0;
	height: 35px;
}
#tabs > a {
	padding: 5px 15px;
	height: 25px;
	border-right: #666 1px solid;
	display: inline-block;
	color: white;
	cursor: pointer;
	text-decoration: none;
}
#tabs > a:hover {
	background-color: #aaa;
	color: black;
}
#tabs > a.active {
	background: #333;
	color: white;
	cursor: default;
}

#menu {
	position: absolute;
	background: black;
	color: white;
	padding: 0;
	font-size: 25px;
	text-align: center;
	height: 35px;
	line-height: 35px;
	width: 35px;
    top: 20px;
    right: 20px;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.5s;
    box-shadow: 0 1px 2px black;
	cursor: pointer;
}
#menu:hover {
	background: white;
	color: black;
}
.menu #menu {
	opacity: 0;
}
#menu::before {
	content: '\22ee';
}

#controls .hidden {
	display: none;
}

#settings {
	line-height: 18px;
	font-size: 18px;
}

#controls input {
	width: 100px;
	border: 1px black solid;
	font-size: 15px;
}
#controls label {
	min-width: 170px;
	display: inline-block;
}

#controls ::-webkit-scrollbar {
    width: 6px;
}
 
#controls ::-webkit-scrollbar-track {
    border-radius: 3px;
    background-color: transparent;
}
 
#controls ::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: #000;
}

#controls > *:not(#tabs) {
	position: absolute;
	top: 35px;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 10px 10px 10px 10px;
	overflow: auto;
	margin: 0;
}
#controls form a {
	display: inline-block;
	cursor: pointer;
	padding: 5px;
	background: white;
	color: black;
	margin: 5px;
}
#controls form a:hover {
	padding: 4px;
	border: 1px solid white;
	background: black;
	color: white;
	margin: 5px;
}
#controls p a {
	color: #ccf;
	text-decoration: none;
	font-weight: bold;
}
#controls p a:hover {
	color: #fff;
	text-decoration: underline;
}