@charset "utf-8";
/* CSS Document */
 ol.ol-1 {
    counter-reset: section1;
    list-style: none;
	color: black;
  }
  ol.ol-1 > li {
    counter-increment: section1;
    margin-bottom: 0.3em;
	  color: black;
  }
  ol.ol-1 > li::before {
    content: counter(section1) ". ";
    position: absolute;
    margin-left: -2em;
	  color: black;
  }
  ol.ol-1 > li {
    position: relative;
	margin-bottom: 15px;
	  color: black;
  }
  ol.ol-2 {
    counter-reset: section2;
    list-style: none;
    padding-left: 1.5em;
	  color: black;
  }
  ol.ol-2 > li {
    counter-increment: section2;
    margin-bottom: 0.3em;
	  color: black;
  }
  ol.ol-2 > li::before {

    content: counter(section1) "." counter(section2) ". ";
    position: absolute;
    margin-left: -3em;
	  color: black;
  }
  ol.ol-2 > li {
    position: relative;
	  color: black;
  }

  ol.ol-3 {
    counter-reset: section3;
    list-style: none;
    padding-left: 1.5em;
	  color: black;
  }
  ol.ol-3 > li {
    counter-increment: section3;
    margin-bottom: 0.3em;
	  color: black;
  }
  ol.ol-3 > li::before {
    content: counter(section1) "." counter(section2) "." counter(section3) ". ";
    position: absolute;
    margin-left: -4em;
	  color: black;
  }
  ol.ol-3 > li {
    position: relative;
	  color: black;
  }
