ol {
 counter-reset: ordered;
}
ol li {
	display: block; 
}
ol li:before {
 counter-increment: ordered;
 content: counters(ordered, ".") " - ";
}
ol li h2 {
	display: inline;
}