	body {
		font-family: "Arial";
		background: #EBEAEA;
	}
	h1
	{
		font-size: 55px;
		font-weight: normal;
		font-style: normal;
		text-align: center;
		text-transform: none;
		color: #e29815;
	}
	
	h2
	{
		font-size: 20px;
		font-weight: normal;
		font-style: normal;
		text-align: center;
		text-transform: none;
		color: #5f5f5f;
	}
	.dotgrey {
	  height: 15px;
	  width: 15px;
	  background-color: #bbbbbb;
	  border-radius: 50%;
	  display: inline-block;
	}
	
	.dotgreen {
	  height: 15px;
	  width: 15px;
	  background-color: #2ac200;
	  border-radius: 50%;
	  display: inline-block;
	}
	
	.rnd {
	  border-radius: 50%;
	}
	
	.piccontainer {
	  position: relative;
	}

	/* Bottom right text */
	.piccontainer-text {
	  position: absolute;
	  bottom: 5px;
	  right: 5px;
	  background-color: black;
	  color: white;
	  padding-left: 10px;
	  padding-right: 10px;
	}
	
	a {
		text-decoration: none;
		font-weight: bold;
		color: #000000;
	}
	
	table {
	  border-collapse: collapse;
	}

	table, th, td {
	  border: 1px solid grey;
	}
	
	th, td {
	  padding: 5px;
	}
	
	
	input[type=text], input[type=number], input[type=date], input[type=file], input[type=time]    {
	  border: 2px solid grey;
	  border-radius: 3px;
	  background-color: #e8e8e8;
	  color: black;
	}
	
	input[type=button], input[type=submit], input[type=reset] {
	  background-color: #5f5f5f;
	  
	  border: 2px solid grey;
	  border-radius: 3px;
	  color: white;
	  padding: 5px 5px;
	  text-decoration: none;
	  margin: 4px 2px;
	  cursor: pointer;
	}
	
nav > ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
}

nav li {
	margin: 0.5em;
	padding: 0;
	font-size: 1.5rem;
	flex: 1 1 0%;
}

@media (min-width: 45em) {
	nav > ul {
		flex-direction: row;
		height: 3em;
	}
	nav li {
		flex: 1;
		font-size: 1em;
	}
}

nav a {
	display: block;
	font-family: "arial";
	font-size: 15px;
	padding: 0.2em;
	text-decoration: none;
	font-weight: bold;
	text-align: center;
	border: 1px solid black;
	border-radius: 5px;
	box-shadow: 0 5px 10px white inset;
	color: black;
	background-color: #f49c00;
	transition: all .15s ease-in;
}

nav li[aria-current] a {
	background-color: #A80000;
	color: white;
}

nav a:focus,
nav a:hover,
nav li[aria-current] a:focus,
nav li[aria-current] a:hover {
	color: black;
	background-color: #DE9F9F;
}
/*     submenu navigation links      */

nav .submenu {
	visibility: hidden;
	height: 0;
	z-index: 1000;
}

nav .submenu li {
	display: block;
	/* width: 15em; */
}
/**     Show the submenu on hover, focus     **/

nav li:hover .submenu,
nav li:active .submenu,
nav li:focus .submenu {
	visibility: visible;
	height: auto;
}

nav li:focus-within .submenu {
	visibility: visible;
	height: auto;
}
