body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	padding-top: 60px;
}

.topnav {
	width: 100%;
	background-color: #333;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	padding: 0;
}

.topnav a {
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
	white-space: nowrap;
}

.topnav a:hover {
	background-color: #ddd;
	color: black;
}

.topnav a.active {
	background-color: #04AA6D;
	color: white;
}

a.logincreds {
	background-color: blue;
	color: white;
}

a.logincreds:hover {
	background-color: blue;
	color: white;
	cursor: pointer;
}

.spacer {
	flex: 1;
}

.more {
	position: relative;
	display: none;
}

.more .icon {
	cursor: pointer;
}

.more .dropdown {
	display: none;
	position: absolute;
	right: 0;
	top: 100%;
	background: #333;
	min-width: 220px;
	border: 1px solid #444;
	z-index: 2000;
}

.more.open .dropdown {
	display: block;
}

.more .dropdown a {
	display: block;
	padding: 10px 14px;
}

.more .dropdown a:hover {
	background-color: #555;
}
