#headerarea {
	width: 100%;
	height: 40px;
	margin: 0;
	position: fixed;
		top: 0;
		left: 0;
	flex-direction: column;
	align-items: left;
	background-color:maroon;
	z-index: 999;
}
#menu ul {
	background-color: maroon;
	margin: 0;
	padding: 0;
}
#menu li {
	display: none;
}
#menu.active li {
	width: 100%;
	padding: 5px 0;
	color: white;
	list-style: none;
	float: reft;
	text-decoration: none;
	font-size: 16pt;
	display: flex;
}
#menu.active a {
	width: 100%;
	text-decoration: none;
	margin-left: 15px;
}
#menu.active a:link {
	color: white;
}
#menu.active a:visited {
	color: silver;
}
#menu.active a:hover {
	background-color: green;
}
#menu.active a.thispage {
	background-color: gold;
}
#menu.active a.thispage:hover {
	background-color: green;
}
#burger {
	position: absolute;
		top: 0px;
		right: 5px;
	width: 40px;
	height: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	background-color:dimgray;
	cursor: pointer;
}
#burger span {
	display: block;
	background-color: white;
	width: 34px;
	height: 2px;
	transition: all .5s ease;
}
#burger.active span:nth-child(1) {
	transform:translateY(11px) rotate(45deg);
}
#burger.active span:nth-child(2) {
	transform:scale(0);
}
#burger.active span:nth-child(3) {
	transform:translateY(-10px) rotate(-45deg);
}
#board {
	margin-top: 35px;
	background-color: #00a2e8;
	display: block;
	text-align: center;
}
.tuitiontable th {
	text-align: center;
}
.tuitiontable td {
	text-align: right;
}
.schedule {
	margin: 10px auto;
	text-align: center;
}
.center {
	text-align: center;
}
body {
	margin: 0;
	padding: 0;
	background-color: white;
	font-size: 16pt;
}
main {
	margin: 5px;
	padding: 10px;
	background-color: #f0fff0;
	border: solid black 1px;
}
p {
	text-indent:1em;
}
table {
	margin: 0 auto;
	border: solid black 1px;
	background-color: white;
	font-size: 14pt;
}
th {
	border: 0;
	padding: 5px;
}
td {
	border: 0;
	padding: 5px;
}
