@charset "UTF-8";

nav {
	position: relative;
	background: inherit;
}

nav a {
	white-space: nowrap;
	border-radius: 5px;
	padding: .25rem;
}

nav a:hover {
	background: lightgrey;
}

nav:first-child a {
	text-decoration: none;
	color: inherit;
}

nav>section {
	position: absolute;
	background: inherit;
	min-width: 100%;
	text-align: left;
	margin-left: 1.5rem;
	border: solid black 1px;
	box-shadow: 5px 10px 5px grey;
	border-radius: 5px;
	display: none; /* displayed when parent is hovered */
}

nav>section a {
	display: block;
}

nav:hover>section {
	z-index: 1;
	display: block;
}

nav nav {
	display: inline-block;
}
/*
ToolBar, main on top of every page
*/
#ToolBar {
	background: lightblue;
	color: black;
	font-weight: bold;
	border: solid black 1px;
	padding: 5px;
}

#ToolBar a {
	color: black;
}

#ToolBar form {
	display: inline-block;
}