h1,h2,h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

blockquote>p {
    margin: 12px 12px 12px 12px;
    line-height: 20px;
    text-align: justify;
}

ol,ul {
    margin: 0px 12px 0px 24px;
    list-style-position: outside;
}

ol {
    list-style-type: decimal;
    counter-reset: item;
}

li {
    margin-left: 18px;
    display: block;
    position: relative;
}

ol>li:before {
    content: counters(item, ".") " ";
    counter-increment: item;
    position: absolute;
    margin-right: 100%;
    right: 10px; /* space between number and text */
}