.is-style-centered-headers table tr:first-child {
  text-align: center;
}

.is-style-list-number {
  list-style: none!important;
  padding: 0!important;
  margin: 0!important;
}

.is-style-list-number li {
  padding: 4px 0px;
  counter-increment: inst;
  border-bottom: 1px solid #f0f0ef;
}

.is-style-list-number li:before {
  content: "(" counter(inst) ")";
  font-weight: bold;
  margin-right: 10px;
}

.is-style-list-number li:last-child {
  border-bottom: 0;
}

.is-style-list-number li:hover {
  background-color: #f5f5f5;
}

.is-style-list-number-plain {
  list-style: none!important;
  padding: 0!important;
  margin: 0!important;
}

.is-style-list-number-plain li {
  text-align: justify;
  counter-increment: inst;
  margin-bottom: 1rem;
}

.is-style-list-number-plain li:before {
  content: "(" counter(inst) ")";
  font-weight: bold;
  margin-right: 32px;
  width: 0;
  display: inline-block;
  white-space: nowrap;
}

.is-style-list-number-plain li:before {
  margin-right: 64px;
}

.is-style-list-letters{
  list-style: none!important;
  padding: 0!important;
  margin: 0!important;
  padding-left: 2rem!important;
}

.is-style-list-letters ul{
  list-style: none!important;
  padding: 0!important;
  margin: 0!important;
}

.is-style-list-letters li {
  text-align: justify;
  counter-increment: inst;
  margin-bottom: 1rem;
}

.is-style-list-letters li:before {
  content: counter(inst, lower-alpha) ")";
  font-weight: normal;
  margin-left: -2rem;
  position: absolute;
}

.is-style-list-letters li ul {
  margin-top: 1rem!important;
}

.is-style-list-letters li ul li {
  text-align: justify;
  counter-increment: sub;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.is-style-list-letters li ul li:before {
  content: counter(sub, lower-roman) ")";
  font-weight: normal;
  position: absolute;
  margin-left: -2rem;
}


.is-style-list-dash,
.is-style-list-letters .is-style-list-dash {
  list-style: none!important;
  padding: 0!important;
  margin: 0!important;
}

.is-style-list-dash li,
.is-style-list-letters .is-style-list-dash li {
  text-align: justify;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
  line-height: 1.5;
}

.is-style-list-dash li:before,
.is-style-list-letters .is-style-list-dash li:before{
  content: '—';
  font-weight: normal;
  margin-left: -2rem;
  position: absolute;
}