/* The style menu */

  .w3-sidebar {
    margin: 0;
    padding: 0;
    width: 150px;
    background-color: white;
    position: fixed;
    height: auto;
    overflow: auto;
  }
  
  .w3-sidebar a {
    display: block;
    color: black;
    padding: 16px;
    text-decoration: none;
  }
   
  .w3-sidebar a.active {
    background-color: #04AA6D;
    color: white;
  }
  
  .w3-sidebar a:hover:not(.active) {
    opacity: 0.6;
    
    color: white;
  }
  
  div.content {
    
    padding: 1px 26px;
    height:auto;
  }
  
  @media screen and (max-width: 700px) {
    .sidebar {
      width: 100%;
      height: auto;
      position: relative;
    }
  .sidebar a {float: left;}
    div.content {margin-left: 0;}
  }

  .dropdown {
  text-align: center;
  font-weight: bold;
  font-size: 1em;
	float: left;
	overflow: hidden;
  }
  .dropdown .dropbtn {
	font-size: 17px;
	border: none;
	outline: none;
	color: rgb(17, 7, 7);
	padding: 14px 16px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
  }
  .dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
  }
  .dropdown-content a {
	float: none;
	color: black;
    text-align: center;
    padding: 12px 16px;
   	text-decoration: none;
	display: block;
	text-align: left;
  }
  .topnav a:hover, .dropdown:hover .dropbtn {
	background-color: #555;
	color: white;
  }
  .dropdown-content a:hover {
	background-color: #ddd;
	color: black;
  }
  
  /* Show the dropdown menu when the user moves the mouse over the dropdown button */
  .dropdown:hover .dropdown-content {
	display: block;
  }
  
  
  @media screen and (max-width: 400px) {
    .sidebar a {
      text-align: center;
      float: none;
    }
  }