.contents-container {
  padding-bottom: 12px;
}
.no-wrap {
  white-space: nowrap;
}
.center-align {
  text-align: center;
  font-weight: bold;
}
.left-align {
  text-align: left;
  font-weight: bold;
}
ol a {
color: #3680bf;
}
a:hover{
color: red;
}
a:active{
color: #3680bf;
}
ol {
  counter-reset: section; /* Creates a new instance of the
                             section counter with each ol
                             element */
  list-style-type: none; 
  font-size: 20px;
}

li::before {
  counter-increment: section; /* Increments only this instance
                                            of the section counter */
  content: counters(section, ".") ". "; /* Combines the values of all instances
                                          of the section counter, separated
                                          by a period */
}
.li-indent-x-x {
  text-indent: -31px;
  padding-left: 31px;  
  font-size: 16px;
  padding-top: 10px;
}
.li-indent-x-x-x { 
  font-size: 16px;
  padding-top: 10px;
}
@media only screen and (max-width: 699px) {
  .li-indent-x {
    /*
    margin-left: -40px;
    */
    text-indent: -15px;
    margin-left: -25px;    
  }
	.li-indent-x-x {
		margin-left: -55px;
	}
	.li-indent-x-x-x {
    text-indent: -40px;
    margin-left: -32px;    
	}  
}