/*
.cke_editable h1,
.zone-fc h1 {
	counter-increment: fc1;
	counter-reset: fc2 fc3;
}

.cke_editable h2,
.zone-fc h2 {
	counter-increment: fc2;
	counter-reset: fc3;
}

.cke_editable h3,
.zone-fc h3 {
	counter-increment: fc3;
}

.cke_editable h1:before,
.zone-fc h1:before {
	content: counter(fc0) "." counter(fc1) "  ";
}

.cke_editable h2:before,
.zone-fc h2:before {
	content: counter(fc0) "." counter(fc1) "." counter(fc2) "  ";
}

.cke_editable h3:before,
.zone-fc h3:before {
	content: counter(fc0) "." counter(fc1) "." counter(fc2) "." counter(fc3) "  ";
}
*/