body {
	background-color: #F7F7F7;
	font-family: montserrat,sans-serif;
}

a {
	text-decoration: none;
}

 /* The sidebar menu */
.sidebarnav {
	height: 100%; /* Full-height: remove this if you want "auto" height */
	width: 160px; /* Set the width of the sidebar */
	position: fixed; /* Fixed Sidebar (stay in place on scroll) */
	z-index: 1; /* Stay on top */
	top: 0;
	left: 0;
	background-color: #FFFFFF;
	overflow-x: hidden;
	overflow-y: hidden;
	padding-top: 5px;
}
.sidebarnav .accountbar {
	width: 100%;
	padding-bottom: 10px;
}
.sidebarnav .errorbar {
	position: absolute;
	bottom: 5px;
	width: 100%;
}
.sidebarnav .errorbar p {
	font-size: 14px;
	border: none;
	
	padding-left: 5px;
	text-align: center;
}

.main {
	margin-left: 160px; /* Same as the width of the sidebar */
	height: 100%;
	z-index: 1;
	overflow-y: hidden;
}

.optionContainer {
	position: relative;
	display: inline-block;
	overflow-x: hidden;

	background-color: #E0E0E0;
	border-radius: 10px;
}

.optionList {
	position: relative;
	overflow-x: hidden;
	padding-bottom: 5px;
	
	background-color: #E0E0E0;
	border-radius: 10px;
}

.optionContainer h3 {
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
}

input[type=button] {
	width: 100%;
	height: 35px;
	
	margin-top: 3px;
	margin-bottom: 3px;
		
	font-size: 16px;
	border-width: 0px;
	border-radius: 5px;
	
	color: #000000;
	background-color: #F7F7F7;
	
	transition: background-color 0.1s;
}

input[type=submit] {
	width: 100%;
	height: 30px;
	
	margin-bottom: 5px;
	
	font-size: 16px;
	border-width: 0px;
	border-radius: 5px;
	
	color: #000000;
	background-color: #F7F7F7;
	
	transition: background-color 0.1s;
}

input[type=button]:hover {
	background-color: #FFFFFF;
}

input[type=submit]:hover {
	background-color: #FFFFFF;
}