 /* Navbar container */
 /*.catmenu {
    overflow: hidden;
    background-color: #333;
    font-weight: normal;
    text-transform: uppercase;
    padding: 0.5em;
    border-radius: 0.5rem;
  }*/
  
  /* Links inside the navbar */
  /*.catmenu a {
    float: left;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-weight: normal;    
  }*/
  
  /* The dropdown container */
  .dropdown {
    float: left;
    overflow: hidden;
    
    color: black;
    /*border-radius: 0.5rem;*/

    margin:0em 0.5em;
  }
  
  /* Dropdown button */
  .dropdown .dropbtn {
    border: none;
    outline: none;
    color: black;
    padding: 0.2em 0.6em;
    background-color: inherit;
    font-family: inherit;
    
    margin: 0; /* Important for vertical align on mobile phones */    
  }
  
  /* Add a red background color to navbar links on hover */
  .catmenu a:hover, .dropdown:hover .dropbtn {
    background-color: #ad3131;
    /*color: white;*/
  }
  
  #dropdown-content img { height: 4em; padding: 0.2em; overflow: hidden; vertical-align: middle; }
  
  /* Dropdown content (hidden by default) */
  #dropdown-content {
    display: none;
    position: absolute;
    
    font-size: 1rem;
    background-color: #f9f9f9;
    min-width: 260px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 10;
  }
  
  /* Links inside the dropdown */
  #dropdown-content a {
    float: none;
    color: #ad3131;
    padding: 0.2em 2em;
    text-decoration: none;
    display: block;
    text-align: left;
    border-radius: 0;    
  }
  
  /* Add a grey background color to dropdown links on hover */
  #dropdown-content a:hover {
    background-color: #ad3131;
    color: white;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover #dropdown-content, .dropdown:active #dropdown-content {
    display: block;
  }
  /*.dropdown:not(:hover) #dropdown-content {
    display: none;
  }*/

  #ddtier { font-size: 0.8em; color: #444; }