<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ++++  Container Tabs CSS Style Sheet ++++++++++++ */

/* ########################################## */
/* ##	containerTab styles    ## */
/* ########################################## */

/* Style the tab */
.containerTab {
  width: 100%;
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

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

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

/* Create an active/current tablink class */
.containerTab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.containerTabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}


/* ########################################## */
/* ##	                                   ## */
/* ########################################## */
</pre></body></html>