/* Change colors on gui navigation links */

.nav {
  color: #000000;
  background-color: #54fc80;
  text-decoration: none; 
  border: 1px solid #54fc80; 
  display: block;
  height: 16px;
  width: 120px;
}

.nav:hover {
  color: #000000;
  background-color: #ffffff;
  text-decoration: none;
  border: 1px dotted #000000;
  display: block;
  height: 16px;
  width: 120px;
}

.nav:active {
  color: #000000;
  background-color: #ffffff;
  text-decoration: none;
  border: 1px dotted #000000;
  display: block;
  height: 16px;
  width: 120px;
}

.nav:focus {
  color: #000000;
  background-color: #ffffff;
  text-decoration: none;
  border: 1px dotted #000000;
  display: block;
  height: 16px;
  width: 120px;
}

.hideme {
  display: none;
}