<style>

.blue { color:#074bc0; 
        /* more muted blue is #1a4da1; */
}

.button {
  border: none;
  color: white;
  padding: 0px 0px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  margin: 4px 2px;
  cursor: pointer;
  height:50px;
  width:100px;
  background-color: #074bc0;
}

.button:hover {
  background: #4CAF50;
  border: 2px solid black;
}

/* Dropdown Button */
.dropbtn, .dropbtn:focus {
  border: none;
  color: white;
  padding: 0px 0px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  margin: 4px 2px;
  cursor: pointer;
  height:50px;
  width:100px;
  background-color: #074bc0;
}

/* Dropdown button on hover & focus */
.dropbtn:hover {
  background: #4CAF50;
  border: 2px solid black;
}

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

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  font-weight: bold;
  background-color: #f1f1f1;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

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

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

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

@media print{
   .noprint{
       display:none;
       visibility: hidden; 
   }
}

</style>
