nav {/* The nav element */
	bborder: 1px solid white;
	background-color: black;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);	
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 10000; /* Everything scrolls un and behind the element */
	cursor: default;
	height: 3.5em;
	line-height: 3.5em;
}
nav ul {/* The entire menu container box */
	bborder: 1px solid brown;
	width: 100%;
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
nav li { /* Divisions of the menu container - first menu boxes */
	bborder: 1px solid red;
	height: 50px;
	margin-top: 5px;
}
nav a{ /* Box inside of menu boxes */
	bborder: 1px solid yellow;
	height: 100%;
	padding: 0 30px;
	text-decoration: none;
	display: flex;
	align-items: center;
	color: white;
	font-size: 13pt;
	font-weight: 600;
}
nav a:hover {
	background-color: #f0f0f0;
	border-radius: 0.4em;
}
.hamb002 {
	border: 4px solid black;
	background-color: #f0f0f0;
	margin-right: 10px;
	border-radius: 0.4em;
}
@media screen and (max-width: 600px) {
	/* Basic */
	.hamb002 {
		bborder: 4px solid red;
		height: 30px;
	}
	.hamb001 {
		border: 4px solid blue;
	}
	nav li { /* Divisions of the menu container - first menu boxes */
		bborder: 1px solid orange;
		height: 40px;
		margin-top: 5px;
	}
}


/* ALign only the first list item where we put the logo on the left side. To do that we then use the first child selector and apply a margin right auto*/
nav li:first-child {
	margin-right: auto;
}
/* SIDE BAR*/
.sidebar {
	border: 1px solid white;
	position: fixed;
	top: 5px;
	right: 5px;
	height: 60vh;
	width: 150px;
	z-index: 999;
	background-color: gold;
	box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
	/* Display the links from top to bottom*/
	display: none;/* We change this from flex to none in order to display the hambuger menu. this will also hide the sidebar but showing only the first navigation bar*/
	flex-direction: column;
	/* We uncenter the links*/
	align-items: flex-start;
	/* Move the sidebar to the top*/
	justify-content: flex-start;
	border-radius: 0.5em;
}
.sidebar li {
	width: 100%;
}
.sidebar a {
	width: 100%;
}

/* Logo */
.logo {
	width: 30%;
}

@media screen and (max-width: 600px) {
	/* Basic */
	.logo {
		bborder: 1px solid white;
		position: absolute;
		width: 10%;
		top: 15px;
	}
	.logo img {
		width: 100%;
		border-radius: .5em;
	}
}

/* Here we use media queries to hide menu items */
@media(max-width: 1160px){
	.hideOnMobile{
		display: none;
	}
}


.title {
	bborder: 1px solid black;
	text-align: center;
	font-family: genomeThin;
	font-size: 2em;
}
.scrBoxWrapper {
	bborder: 1px solid orange;
	position: absolute;
	top: 20%;
	height: 60%;
	width: 100%;
}
.scrBoxSecWrapper {
	bborder: 1px solid blue;
	position: relative;
	width: 80%;
	margin: 0 auto;
	top: 20px;
	text-align: left;
}
.bstyleL {
	bborder: 1px solid red;
	width: 20%;
	text-align: center;
	position: relative;
	float: left;
	box-sizing: border-box;
	padding: 5px;
	font-family: Calibri;
	font-size: 1em;
	display: inline-block;
}
.bstyleL img{
	width: 100%;
	height: 90%;
}
.bottomDiv {
	bborder: 1px solid red;
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 15%;
	font-family: Calibri;
	font-size: 0.7em;
}
/*Boxes for full pages*/
.scrBoxOutter {
	position: relative;
	border: 1px solid black;
	background-color: white;
	width: 70%;
	height: 95%;
	margin: 0 auto;
	overflow: hidden;
	border: 0px solid #0f0;
	padding: 2px;
	text-align: justify;
	background: transparent;
}

.scrBoxInner {
	position: relative;
	border: 1px solid orange;
	background-color: yellow;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	overflow-y: scroll;
	border: 0px solid #0f0;
	padding-right: 20px; /* Increase/Decrease this value for cross-browser compatibility*/
	box-sizing: content-box; /* So the width will be 100% + 20px, the scrollbar is hidden under the 20px */
	text-align: justify;
	background: transparent;
}