/* Section of mydropdown styling */
 /* Dropdown Button */
.usermenusel, .mydropbtn.usermenusel, .mydropbtn.usermenusel a
{
  color: #bbb;
}

.mydropbtn, .mytoolbar a, button.mydropbtn {
  color: #fff;
  border: none;
  margin: 0 0 2px 0;
  padding: 0.2em 0.2em;
  font-size: 17px;
  font-family: Helvetica, Verdana, Arial, sans-serif;
  cursor: pointer;
  background: rgb(0,73,182);
}

.mytoolbar {
  color: #fff;
  height: 30px;
  width: 1024px;
  margin: 0 auto;
  padding: 2px 0 0 0;
  display:block;
}

.mydropbtn:hover, .dropbtn:focus, .mytoolbar a:hover {
 transform: scale(1.1);
 text-decoration: none;
}

/* The container <div> - needed to position the dropdown content */
.mydropdown {
  position: relative;
  display: inline-block;
  padding: 1px 0 0 0;
}

/* Dropdown Content (Hidden by Default) */
.mydropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.mydropdown-content a {
  color: black;
  padding: 0.3em 0.5em;
  text-decoration: none;
  display: block;
  font-size: 1em;
  background: white;
}

.mydropdown-content a:hover {
  color: white;
  background: rgb(0,73,182);
  text-decoration: none;
  transform:scale(1.0);
}


/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.mydropshow {display:block;} 

.menuicon {
 padding-right: 0.3em;
 margin-bottom: -2px;
}
