/*
  Color Pallette: 
  
  Color	Hex	RGB
  #580000	(88,0,0) A Dark Red
  #000000	(0,0,0) Black
  #1b492b	(27,73,43) A Dark Green
  #5e7e69	(94,126,105) A Lighter Green
  #a9aba9	(169,171,169) A Light Shade of Grey
*/

/*
  General Body Style
*/

body {
  
  background-color: #a9aba9;
  
  color: black;
  
  font-family: Helvetica;
  
}

/* Navigation List Styles */

#nav {
  
  position: sticky;
  
  top:0;
  
  background-color: #1b492b;
  
  border:2px solid black;
  
  border-radius:5px;
  
  list-style-type: none;
  
  margin: 0;
  
  padding: 0;
}

/* Navigation Section List Style */
#nav ul {
  
  list-style-type: none;
  
  margin: 0;
  
  padding: 0;
  
  overflow: hidden;
}

/* Navigation Section List Items Style */
#nav li {
  
  float: left;
  
  border-right: 2px solid black;
}

/* Anchor Styling for Nav List Items */
#nav li a {
  
  display: block;
  
  color: white;
  
  text-align: center;
  
  padding: 14px 16px;
  
  text-decoration: none;
}

/* Changes the link color on hover */
#nav li a:hover {
  
  background-color: #580000;
}

/* Changes the color of the link if it's the active link. */
#nav li.active {
  background-color: #580000;
}

/* Adds border to the floating links. */
#nav li#navFirstLink {
  border-right: 2px solid black;
  border-left: 2px solid black;
}

/* Removes border from the last floating link on the right.. */
#nav li#navLastLink {
  border-right: none;
}

/* footer Styles */

footer {
  
  background-color: #1b492b;
  
  border: 2px solid black;
  
  border-radius:5px;
  
  padding:5px;
  
  }