body {
    margin: 0;
	font-family: arial;
	position: absolute;
	background-color: white;
	top: 0;
	left: 0;
	right: 0;
}

.nav {
    width: 100%;
	display: inline-block;
    margin: 0;
	position: fixed;
	z-index: 1;
}
.nav a {
	text-decoration: none;
	color: rgba(200,200,200,0.8);
	transition: 0.3s;
}
.nav a:hover, .nav a:active {
	color: rgba(250,100,250,1);
}
.nav table {
	width: 100%;
	height: 70px;
}
.nav td {
	text-align: center;
	background-color: black;
	width: 16%;
	border-left: 1px solid rgba(255,255,255,0.2);
	border-right: 1px solid rgba(255,255,255,0.2);
	box-shadow: 0px 3px 3px black;
	letter-spacing: 2px;
	transition: 0.3s;
	padding: 0 10px;
	cursor: pointer;
}
.nav td:hover, .nav td:active {
	transform: scale(1.1, 1.1);
	background-color: rgb(100,100,80);
}
.nav td:hover a {
	color: rgba(250,250,250,1);
}
#content {
	width: 100%;
	margin-top:75px;
	margin-bottom: 50px;
	display: inline-block;
}

#main_content h1 {
	margin-left: 3%;
}
.file_link {
	text-decoration: none;
	margin-left: 3%;
	background-color: rgb(100,100,100);
	color: rgb(100,250,100);
	padding: 5px;
	border-radius: 5px;
}
.file_link:hover {
	text-decoration: underline;
}

#sidebar {
	display: inline-block;
	position: fixed;
	width: 20%;
	border-right: 2px solid rgb(150,150,150);
	height: calc(100% - 75px);
	overflow-y: scroll;
	background-color: rgb(220,220,220);
}
#sidebar ul {
	padding: 0 20px;
}
#sidebar li {
	list-style-type: none;
	margin-top: 15px;
}
#sidebar .sidebarElem {
    text-decoration: none;
    color: black;
	padding: 3px;
	border-radius: 4px;
    transition: 0.3s;
	margin-right: 10px;
	cursor: pointer;
	overflow-wrap: break-word;
}
#sidebar .sidebarElem:hover {
    background-color: slategray;
	color: white;
}
#sidebar p {
    padding: 5px;
	border-radius: 4px;
	margin-top: 20px;
	margin-right: 10px;
	font-weight: bold;
	background-color: rgb(160,160,160);
	color: rgb(250,250,250);
}
#main_content {
	display: inline-block;
	width: 80%;
	margin-left: 20%;
}

/* js_helper styling */

.helper_demo {
	margin-top: 20px;
	border-top: 3px solid silver;
}
.demo {
    margin: 30px 0px;
    padding: 20px 0 20px 10%;
    background-color: rgb(230,230,230);
}
.demo_title {
    font-size: 1.2em;
    color: rgb(150,150,150);
}
.demo_title, .demo_description {
    margin-left: 30px;
}
.code_text {
	color: rgb(100,250,100);
	background-color: rgb(100,100,100);
	padding: 5px;
	border-radius: 5px;
	line-height: 200%;
}

/* hideElem */

#banner {
    height: 50px;
    width: 80%;
    font-size: 1.4em;
    padding: 5px;
    border: 1px solid rgb(50,50,50);
}
#closeBannerButton {
    float: right;
}

/* navi */

#hrefSpan {
    cursor: pointer;
}

/* displayToggleButton */

#displayToggleButtonWrapper {
    width: 80%;
    border: 1px solid rgb(100,100,100);
}
#toggleDisplayButton {
    display: block;
    width: 100%;
}

/* changeElemColor */

#testChangeElemColor {
	padding: 5px;
	border-radius: 10px;
	width: 50%;
}

/* resetToDefault */

#testResetToDefault input {
	margin: 5px 0;
	display: block;
}

/* testSaveToStorage */

#testSaveToStorage input {
	margin: 10px 0;
	display: block;
}
#saveToStorageResult {
	width: 70%;
	word-wrap: break-word;
}

/* getScrollDiff */

#testGetScrollDiff {
	width: 80%;
	height: 500px;
	overflow:scroll;
	border: 1px solid rgb(50,50,50);
	padding: 20px;
}

/* getElemsNameVals */

#testGetElemsNameVals input {
	display: block;
	margin: 15px 0;
}

/* parseStrToArray */

#parseStrToArrayText {
	display: block;
	margin-bottom: 10px;
}
#parseStrToArraySelect {
	margin: 10px 0;
}

/* getUrlAsync */

#testGetUrlAsync, #getUrlAsyncDetails {
	width: 90%;
	word-break: break-word;
}

/* getCursorPosition */

#testGetCursorPositionElem {
	width: 50%;
	height: 400px;
	border: 2px solid rgb(50,50,50);
}

/* getKeyProps */

#testGetKeyPropsDiv {
	border: 2px solid rgb(20,20,20);
	display: block;
}

/* genRandomNumArray */

#testGenRandomNumArray {
	width: 80%;
	word-break: break-word;
}

/* generic styles */

.errorText {
	color: red;
}
.emphasis {
	display: inline-block;
	font-size: 1.2em;
	padding: 5px;
	background-color: rgb(50,50,50);
	color: white;
	border-radius: 5px;
}
.pink {
	color: pink;
}
.rgb50 {
	background-color: rgb(50,50,50);
}
.rgb230 {
	background-color: rgb(230,230,230);
}
.fontSize15 {
	font-size: 1.5em;
}
.width50 {
	width: 50%;
}
.padding2 {
	padding:2%;
}
.boxDiv {
	width: 100px;
	height: 100px;
	border: 2px solid rgb(50,50,50);
	margin: 10px 0;
}
