ol.contcount {
  list-style: none;
  margin: 0px 0px 0px 0px;
}
ol.contcount li:before {
  counter-increment: mycounter;
  content: counter(mycounter) ". ";
}
ol.contcount:first-of-type {
  counter-reset: mycounter;
}
