
body {padding:0;margin:0;font-family:Arial}
/*Below block of coding is to fix posistion of nav bar at top,  so that page scrols under nav bar.  Also top 0 and left 0 fixes white space above nav bar..  */
#myTopnav{    
  position: fixed;
  z-index: 1;
  background-color:rgba(121, 180, 231, 0.75);
  width: 100%;
  padding:0;
  margin: auto;
  top: 0; left: 0; /*bottom: 0; right: 0;*/
}
    


    

}
.topnav {
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0);  /* #333*/
/*    position: fixed;*/
}

.topnav a {
  float: left;
  display: block;
  color: Black;   /*#f2f2f2    Text Color*/   
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  font-weight: bold;
  border-radius: 20%;

}

.active {
  background-color:rgba(255, 255, 255, 0);   /*#4CAF50  Home Button Color  */
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 17px;    
    font-weight: bold; 
    border: none;
    outline: none;
    color: Black;     /* white   unactive text color of worthy links*/
    padding: 14px 16px;
    background-color: rgba(255, 255, 255, 0);    /*inherit  Unactive background color of worthy links*/
    font-family: inherit;
    margin: 0;

}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(121, 180, 231, 0.75);  /*#f9f9f9   Background color of dropdown links */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;

}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: rgba(40, 115, 195, .5);   /*  #555   background color of Worthy Links when Active*/
  color: white;
  border-radius: 20%;
}

.dropdown-content a:hover {
    background-color: rgba(40, 115, 195, .6);     /*   255, 255, 255, .8       Background color of  links nested inside Worthy Links*/
    color: white;
 /*   font-weight: bold;*/
}

.dropdown:hover .dropdown-content {
    display: block;
    border-radius: 0px 0px 25px 25px;

}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;

  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}
