.navbar {
  overflow: hidden;
  background-color: #333; 
	float: left;
	padding-left:5%;
	width: 95%;
	text-transform: uppercase
}

.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 20px 16px;
  text-decoration: none;;
	text-transform: uppercase
}

.subnav {
  float: left;
  overflow: hidden;
	text-transform: uppercase
}

.subnav .subnavbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 20px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
	text-transform: uppercase
}

.navbar a:hover, .subnav:hover .subnavbtn {
  background-color: #4360af;
}

.subnav-content {
  display: none;
  position: absolute;
  left: 0;
  background-color: #666;
	padding-left:5%;
  width: 95%;
  z-index: 1;
}

.subnav-content a {
  float: left;
  color: white;
  text-decoration: none;
}

.subnav-content a:hover {
  background-color: #eee;
  color: black;
}

.subnav:hover .subnav-content {
  display: block;
}

@media only screen and (max-width:480px){
	.navbar {width:100%; padding: 0px}
	.subnav {float: left;width:100%}
	.subnav-content {float:left;width:100%;padding: 0px}
	
}


