 /* Navbar container */
 ul.navbar {
	 background-color: #006341;
	 text-align:center;
	 
 }
@media screen and (min-width:768px){
	/* Links inside the navbar */
	.navbar a {
	  float: left;
	  font-size: 1.2em;
	  color: #eafff2;
	  text-align: center;
	  padding: 14px 16px;
	  text-decoration: none;
	}

	/* The dropdown container */
	.dropdown {
	  float: left;
	  overflow: hidden;
	}
	/*li.dropdown:nth-child(2) {font-weight:bold;}*/
	/* Dropdown button */
	.dropdown .dropbtn {
	  font-size: 16px;
	  border: none;
	  outline: none;
	  color:#eafff2;
	  padding: 14px 16px;
	  background-color: #006341;
	  font-family: inherit; /* Important for vertical align on mobile phones */
	  margin: 0; /* Important for vertical align on mobile phones */
	}

	/* Add a red background color to navbar links on hover */
	.navbar a:hover, .dropdown:hover .dropbtn {
	  background-color: #666;
	  color: #fff;
	}

	/* Dropdown content (hidden by default) */

	.dropdown-content {
	  display: none;
	  position: absolute;
	  background-color: #f9f9f9;
	  min-width: 160px;
	  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	  z-index: 1;
	  top: 45px;
	}

	/* Links inside the dropdown */
	.dropdown-content a {
	  float: none;
	  color: #231f20;
	  padding: 12px 16px;
	  text-decoration: none;
	  display: block;
	  text-align: left;
	}

	/* Add a grey background color to dropdown links on hover */
	.dropdown-content a:hover {
	  background-color: #fff;
	  color: #666;
	}

	/* Show the dropdown menu on hover */
	.dropdown:hover .dropdown-content {
	  display: block;
	} 
}

