
/* The dropdown container */
.dropdown {
  background-color: #333;
  font-size: 24px;
  text-align: center;
  float: left;
  overflow: hidden;
  width: 25%;

  
}

/* Dropdown button */
.dropdown .dropbtn {
  width: 100%;
  font-size: 24px;
  border: none;
  outline: none;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

.dropbtn  a{
text-decoration: none;
color: white;}

/* Change the color of links on hover */
.dropdown:hover .dropbtn {
	font-weight: bold;
    background-color: #043a80;
    color: black;
}


/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    background-color: #f1f1f1;
	width: 22%;
	position: absolute;
    z-index:10;
	
}

/* Links inside the dropdown */
.dropdown-content a {
	font-size: 18px;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
	z-index: 10;
	
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd; font-weight: bold; }

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