ul,
ol {
  margin: 10px 0 0;
  padding: 0;
}

/** Regular list */
ul.regular-list {
  list-style: none;
}

ul.regular-list > li {
  margin: 16px 0 0;
  padding-left: 19px;
  position: relative;
}

ul.regular-list.-black > li {
  margin: 5px 0 0;  
}

ul.regular-list > li:first-child {
  margin-top: 0;
}

ul.regular-list > li:before {
  font: bold 14px/20px Helvetica, Arial, sans-serif;
  background-position: -580px -10px;
  text-align: center;
  color: #ff6100;
  position: absolute;
  top: 4px; 
  left: 0;
}

ul.regular-list>li:before {
  content: "\25CF";
}

ol.numbered-steps.-blue > li:before,
.infoMsg > ul.regular-list > li:before,
ul.regular-list.-blue  > li:before {
  background: #5b8ad6;
}

ol.numbered-steps.-purple > li:before,
ul.regular-list.-purple  > li:before  {
  background: #c5569a;
}

ul.regular-list.-black  > li:before  {
  background: #512b2b;
  top: +5px;
}

ol.numbered-steps.-yellow > li:before,
ol.numbered-steps li > ul.regular-list > li:before,
.warningMsg > ul.regular-list > li:before,
.successMsg > ul.regular-list > li:before,
ul.regular-list.-yellow  > li:before  {
  background: #fdc129;
}

ul.regular-list > li {
  padding-left: 15px;
}

ul.regular-list > li:before {
  content: "";
  background-image: none;
  width: 8px;
  height: 14px;
  position: absolute;
  top: 4px;
  left: 0px;
  text-align: center;
  background: #ee7023;
  border-radius: 0 12px 12px 0;
  -moz-border-radius: 0 12px 12px 0;
  -webkit-border-radius: 0 12px 12px 0;
}

/** Links list */
.links-list {
  list-style: none;  
}

.links-list > li:first-child {
  margin-top: 0;
}

/** Plain list */
.plain-list {
  list-style: none;
}

.plain-list > li {
  margin: 7px 0 0;
}

.plain-list > li:first-child {
  margin-top: 0;
}

.plain-list + .plain-list {
  margin-top: 22px;
}


