@charset "UTF-8";

.greenborder	{
	border-style: solid;
	border-width: 4px;
	border-color: rgb(00,100,00);
	border-radius: 5px;	
}

.greenbox	{
	border-style: solid;
	border-width: 4px;
	border-color: rgb(00,100,00);
	background-color: rgb(00,100,00);
	border-radius: 5px;
}

.widthT	{
	width: 25%;
}

.widthSm	{
	width: 32.6%;
}

.widthMed	{
	width: 45%;
}

.widthLarge	{
	width: 75%
}

.floatright	{
	float: right;
}

.floatleft	{
	float: left;
}

.clearfix	{
	overflow: auto;
}

.paddingB	{
	padding: 100px;
}

.paddingM	{
	padding: 50px;
}

.paddingS	{
	padding: 25px;
}

.textleft	{
	text-align: left;
}

.textright	{
	text-align: right;
}

h1	{
	text-align: center;
	color: rgb(00,100,00);
	font-size: 5em;
}

h2	{
	text-align: center;
	color: rgb(256,256,256);
	font-size: 4em;
}

body	{
	background-color: rgb(00,00,00);
	text-align: center;	
}

p	{
	color: rgb(00,100,00);
	font-size: 1.5em;
	margin: 50px;
}

ul	{
	list-style-type: none;	
	margin: 0px;	
	padding: 0px;	
	background-color: rgb(00,100,00);
	text-align: center;
	position: sticky;
	top: 0;
}

ul li	{
	display: inline-block;
}

ul li a	{
	color: white;
	text-decoration: none;
	display: block;
	padding: 20px 20px;
}

ul li a:hover	{
	color: rgb(00,180,00);
}

/*Dropdown code was sourced from https://www.w3schools.com/css/css_dropdowns.asp*/

.dropdown {
  position: relative;
}

.dropbtn {
  background-color: rgb(00,100,00);
  color: white;
  padding: 16px;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(00,100,00);
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}
