ol.help-steps {
  padding-left: 0;
  counter-reset: li;
  list-style: none;
  *list-style: decimal;
}
ol.help-steps > li {
  position: relative;
  padding-left: 40px;
  padding-top: 5px;
  min-height: 40px;
}
ol.help-steps > li:before {
  content: counter(li);
  counter-increment: li;
  color: #f8f9fc;
  background-color: #858796;
  border-color: #000;
  border-radius: 50%;
  font-size: 16px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
