/*The settings for the menu bar styles*/
#MenuLogo {
  align-content: center;
  display: inline-block;
  margin-left: 1%;
  margin-right: 1%;
  margin-bottom: 5%;
  width: 98%;
  text-align: center;
  background-image: linear-gradient(#0047AB, #1274ff);
}

.ClassCenterText {
  margin: auto;
  width: 95%;
  font-size: 80px;
  color: #ab6400;
}

.ClassCenterTextRed {
  margin: auto;
  width: 95%;
  color: #ff9d12;
  font-size: 20px;
}

  #TheMenuImage {
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
    margin-top: 5px;
    align-content: center;
  }

#TheMenuHRef {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2px;
  margin-top: 2px;
  text-align:center;
  align-content: center;
}

#MenuNav {
  float: right;
  display: block;
  padding-right: 5px;
}

#MenuUpper {
  width: 100%;
  display: block;
}

/*This gives the background color for Bar. #333 is a black*/
.navbar {
  background-color: #0047AB;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}
/*This gives the text color for menu*/
  .navbar a {
    color: #ff9d12;
    float: left;
    font-size: 14px;
    text-align: center;
    padding: 5px 5px;
    text-decoration: none;
  }

.dropdown {
  display: inline-block;
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
    cursor: pointer;
    font-size: 14px;
    border: none;
    outline: none;
    padding: 0px, 5px, 10px, 2px;
    background-color: inherit;
    font-family: inherit;
  }

.dropbtn a {
  display: block;
  padding: 3px;
}

/* This give the highlite colors for the menu*/
.navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
  background-color: red;
  color: white;
}

/* This gives the background color for the menu drop down*/
.dropdown-content {
  display: none;
  position: absolute;
  color: white;
  background-color: #0047AB;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000;
}

  /* This gives the text color for the menu drop down*/
  .dropdown-content a {
    float: none;
    color: #ff9d12;
    padding: 5px 5px;
    text-decoration: none;
    display: block;
    text-align: left;
    z-index: 1000;
  }

/*This give the highlite colors for drop down menus*/
  .dropdown-content a:hover {
    /* background-color: #ddd;*/
  }

.dropdown:hover .dropdown-content {
  display: block;
}
