
/* taken from https://www.w3schools.com/howto/howto_js_tabs.asp */
/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: black;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  color:#ccc;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
  color:black;
  cursor:default;
}

/* Style the tab content */
.tabcontent {
  font-style:italic;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
} 

div.tabbed-content p.hidden { display:none; }