.header{
	background-color: antiquewhite;
	margin: 0;
	width: 100%;
	height: 50px;
	position: fixed;
	top: -120px;
	overflow: visible;
	transition: top 2s ease;
	z-index: 1;
}
.headerHoverZone{
	width: 100%;
	height: 300px;
	position: fixed;
	z-index: -2;
}
.headerLabel{
	font-family: oswald;
	font-size: 32px;
	width: 300px;
	text-align: left;
	box-sizing: border-box;
	padding-left: 12px;
	position: relative;
	bottom: 0px;
	transition: bottom ease 0.25s;
	color: darkslategray;
	float: left;
}
.headerIcon{
	position: relative;
	width: 32px;
	height: 32px;
	top: 9px;
	pointer-events: none;
}
.headerButton{
	position: relative;
	display: flex;
	justify-content: center;
	width: 50px;
	height: 100%;
	padding-left: 8px;
	padding-right: 8px;
	float: right;
	transition: background-color linear 0.15s;
}
.headerDropdown{
	background-color: antiquewhite;
	position: fixed;
	width: 300px;
	height: 150px;
	top: 60px;
	right: -310px;
	transition: right ease 0.25s;
}
.headerDropdownList{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.headerDropdownItem{
	font-family: oswald;
	font-size: 24px;
	color: darkslategray;
	padding-left: 6px;
	transition: background-color linear 0.15s;
	transition: color linear 0.15s;
}
.headerDropdownItem:hover{
	background-color: darkslategray;
	color: antiquewhite;
}
.headerDropdownNoItems{
	font-family: oswald;
	font-size: 24px;
	color: dimgray;
	margin: 0;
	padding-left: 6px;
}
.headerDescription{
	position: fixed;
	width: 300px;
	height: 200px;
	top: 60px;
	left: -310px;
	font-family: oswald;
	font-size: 24px;
	color: darkslategray;
	background-color: antiquewhite;
	padding-left: 6px;
	transition: left ease 0.25s;
}