* {
	margin: 0;
	padding: 0;
	height: 100%;
}

body{
	display: flex;
	flex-direction: row;
}

#leftBar{
	width: calc(33% - 1px);
	border-right:1px solid black;
	position:fixed;
	z-index: 10;
	background-color: white;
}

#content{
	width: 100%;
	height:800%;
	display: flex;
	flex-direction: column;
}

.contentElement{
	width: 100%;
	height:100%;
	display:table;
	border:1px solid black;
}
li {
	height:auto;
	margin:25px;
	list-style-type: none;
}
li a{
	text-decoration:none;
	color:black;
}
h1 {
	text-align:right;
}