.bsi{

}

.bsi table{
    width: 99%;
    
    background-color: transparent;
 
     
    display: table;
    border-collapse: collapse !important;
    border-spacing: 2px;
    border-color: grey;
    margin-bottom: 15px;
    
    
}

.bsi   h1{
	    font-size: 26px;
}
.bsi   h2{
    text-align: center !important;
}

.bsi table td,
.bsi table th {
    background-color: #fff !important;
    border: 1px solid #ddd !important;
      vertical-align: top;
      padding: 8px;
  }

.bsi table  > tbody > tr:hover {
  background-color: #f5f5f5;
}

.bsi .error {
    color: RED;
}

.bsi .warning {
    background: #f3eec0;
    padding: 5px;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 180px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}


.bsi ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-top: 25px;
  overflow: hidden;
  background-color: #1E2429;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
}

.bsi li {
  float: left;
}

.bsi li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.bsi li a:hover {
  background-color: #1E2429;
}

.bsi .active {
  background-color: #0073AB;
}