.topnav {
	font-family:Calibri;
	font-weight: bold;
	overflow: hidden;
	background-color: blue;
   }
  
  .topnav a {
	float: left;
	display: block;
	color: white;
	text-align: center;
	padding: 12px 16px;
	text-decoration: none;
	font-size: 15px;
  }
  .active {
	font-family:Calibri;
	font-weight: bold;
	background-color: blue;
	color: white;
  }
  
  .topnav .icon {
	display: none;
  }
  
  .dropdown {
	float: left;
	overflow: hidden;
  }
  
  .dropdown .dropbtn {
	font-family:Calibri;
	font-weight: bold;
	font-size: 15px;    
	border: none;
	outline: none;
	color: white;
	padding: 12px 16px;
	background-color: blue;
	margin: 0;
  }
  
  .dropdown-content {
	font-family:Calibri;
	display: none;
	position: absolute;
	color: white;
	background-color: navy;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	
  }
  
  .dropdown-content a {
	font-family:Calibri;
	font-weight:normal;
	float: none;
	color: yellow;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
	border-bottom: 1px blue solid;
	/*border-top: 1px white solid;*/
  }
  
  .topnav a:hover, .dropdown:hover .dropbtn {
	background-color: #6699FF;
	color: white;
  }
  
  .dropdown-content a:hover {
	background-color: blue;
	color: white;
  }
  
  .dropdown:hover .dropdown-content {
	display: block;
	
  }
  
  @media screen and (max-width: 800px) {
	.topnav a:not(:first-child), .dropdown .dropbtn {
	  display: none;
	}
	.topnav a.icon {
	  float: right;
	  display: block;
	}
  }
  
  @media screen and (max-width: 800px) {
	.topnav.responsive {position: relative;}
	.topnav.responsive .icon {
	  position: absolute;
	  right: 0;
	  top: 0;
	  max-width:100%;
	}
	.topnav.responsive a {
	  float: none;
	  display: block;
	  text-align: left;
	}
	.topnav.responsive .dropdown {float: none;}
	.topnav.responsive .dropdown-content {position: relative; margin-left: 15px; margin-right: 20px;}
	.topnav.responsive .dropdown .dropbtn {
	  display: block;
	  width: 100%;
	  text-align: left;
	}
  }