/*selects all divs*/

div {
	float: left;
	clear: both;
	/* new code */
}



#container {
	background-color: lightgrey;
	margin-bottom: 40px;
	width: 80%;
	height: 70vh;
	margin-left: 10%;
}



/* Sidebar with links to different parts of the page.*/
.sidebar {
width: 15%;
margin-left: 2%;
background-color: whitesmoke;
height: 400px; /* Can remove this line later? */
clear: none;
margin-top: 10px;
}

/*Buttons within the sidebar.*/
.sidebarbutton {
width: 85%;
margin-left: 5%;
margin-top: 5%;
background-color: skyblue;
height: 20px;
}


.pageheader {
	width: 79%;
	margin-left: 2%;
	margin-right: 2%;
	background-color: pink;
	height: 50px; 
	margin-top: 10px;
	clear: none;
	float: right;
}

.content {
	width: 79%;
	margin-left: 2%;
	margin-right: 2%;
	background-color: whitesmoke;
	height: 350px;  
	margin-top: 10px;
	clear: none;
	float: right;
}

.standardtext {
	margin-left: 1%;
	margin-right: 1%;
}

