div.italic {
  font-style: italic;
}


div.level1{
    text-indent: 50px;
}
div.level2{
    text-indent: 100px;
}
div.level3{
    text-indent: 150px;
}
div.level4{
    text-indent: 250px;
}
div.level5{
    text-indent: 300px;
}

.boldtable, .boldtable td ,boldtable th{
    font-family: sans-serif;   
    font-size: 12pt;   
    color: black;   
    background-color: lightgray; 
    border: 1px solid black;
    }
.boldtable th {
    font-family: sans-serif;   
    font-size: 12pt;   
    color: black;   
    background-color: gray; 
    border: 1px solid black;
    }


.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;


 /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top:  45%;
  left: 38%;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}


