/***********************************************************************
 * Navigation
 */
#navigation {
  clear: both;
  background-color: #ffffff; /* White page background */
}

#nav-buttons {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

#nav-buttons li {
  display: inline;
}

#nav-buttons a {
  display: inline-block;
  text-decoration: none;
  vertical-align: top;
  outline: none;
}

#nav-buttons div.nav-button {
  height: 60px;
  width: 74px;
  margin: 0 8px;
  padding: 0;
  border: solid 1px #2F3234; /* Dark border */
  background-color: #2F3234;  /* Dark nav background */
  background-repeat: repeat-x;
  background-image: none; /* remove gradients */
  border-radius: 8px;
  color: #F1B434; /* Default icon/text color */
}

#nav-buttons div.nav-button:hover {
  background-color: #F1B434; /* Gold background on hover */
  color: #2F3234;            /* Dark text/icon */
}

#nav-buttons span.nav-text {
  display: block;
  margin: 0 8px;
  width: 75px;
  height: 47px;
  color: #F1B434; /* Gold font color */
  line-height: 15px;
}

/* INACTIVE ICONS */
#nav-buttons i {
  color: #F1B434;
  transition: color 0.3s ease;
}

/* ACTIVE / HIGHLIGHTED ICONS */
#nav-buttons a.active i,
#nav-buttons div.nav-button:hover i {
  color: #2F3234;
}

#navigation-subbar .divider {
  padding: 0 10px;
  color: #F1B434; /* Gold divider */
}

#navigation-subbar {
  margin: 0 auto;
  height: 37px;
  color: #F1B434; /* Gold letters */
  font-weight: bold;
  font-size: 18px;
  padding: 0 10px;
  background-color: #2F3234; /* Dark background */
  background-image: none;
  text-shadow: none;
  border-radius: 7px;
}

#navigation-subbar .help-icon img {
  vertical-align: bottom;
  padding-bottom: 12px;
}

.navigation-title {
  line-height: 37px;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  color: #F1B434; /* Gold title */
}

#navigation-subbar .subbar-btn {
  float: right;
  margin-top: 5px;
  margin-left: 5px;
  padding: 5px 7px 5px;
  line-height: 14px;
  background-color: #F1B434; /* Gold btn */
  color: #2F3234;            /* Dark text */
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#navigation-subbar .subbar-btn:hover {
  background-color: #2F3234; /* Dark hover */
  color: #F1B434;           /* Gold text */
}

#navigation-subbar .subbar-btn-masq {
  float: right;
  font-size: 22px;
  margin-top: 5px;
  margin-left: 5px;
  padding: 2px 3px 2px;
  line-height: 14px;
  background-color: #F1B434; /* Gold btn */
  color: #2F3234;            /* Dark text */
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#navigation-subbar .subbar-btn-masq:hover {
  background-color: #2F3234; /* Dark hover */
  color: #F1B434;           /* Gold text */
}

#navigation-subbar .subbar-btn:disabled {
  cursor: default;
  background-color: #cccccc;
  color: #666666;
}

#navigation-subbar .subbar-btn i.rotating {
  animation: rotating 2s linear infinite;
}
