body {
  counter-reset: h2;
}

h2 {
  counter-reset: h3;
}

h3 {
  counter-increment: h3;
}

h2:before {
  content: counter(h2, decimal) ". ";
  counter-increment: h2;
}

h3:before {
  content: "- ";
}

/*# sourceMappingURL=header-numbered.css.map */
