.container {
  width: 100%;
  /*margin: auto;*/
  /*padding: 10px 20px;*/
  margin-top: 1em;
}

ol.ordered-list {
    counter-reset:li; /* Initiate a counter */
    margin-left:0; /* Remove the default left margin */
    padding-left:0; /* Remove the default left padding */
}
ol.ordered-list > li {
    position:relative; /* Create a positioning context */
    margin:0 0 10px 2em; /* Give each list item a left margin to make room for the numbers */
    padding:4px 8px; /* Add some spacing around the content */
    list-style:none; /* Disable the normal item numbering */
    border-top:2px solid #947F69;
    cursor: default
}
ol.ordered-list > li:before {
    content:counter(li); /* Use the counter as content */
    counter-increment:li; /* Increment the counter by 1 */
    /* Position and style the number */
    position:absolute;
    top:-2px;
    left:-2em;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    width:2em;
    /* Some space between the number and the content in browsers that support
       generated content but not positioning it (Camino 2 is one example) */
    margin-right:8px;
    padding:4px;
    border-top:2px solid #947F69;
    color:#fff;
    background:#947F69;
    font-weight:bold;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-align:center;
}

ol.ordered-list > li:hover, ol > li:hover {
	border-color: #4b4136;
	 }

ol.ordered-list > li:hover:before, ol > li:hover:before {
	background-color: #4b4136;
	border-color: #4b4136; }

.ordered-list li ol,
.ordered-list li ul {margin-top:5px;}
.ordered-list ol ol li:last-child {margin-bottom:0;}




/***************/


ul.ordered-list {
    /*counter-reset:li; /* Initiate a counter */
    margin-left:0; /* Remove the default left margin */
    padding-left:0; /* Remove the default left padding */
}
ul.ordered-list > li {
    position:relative; /* Create a positioning context */
    margin:0 0 10px 2em; /* Give each list item a left margin to make room for the numbers */
    padding:4px 8px; /* Add some spacing around the content */
    /*list-style:none; /* Disable the normal item numbering */
    border-top:2px solid #947F69;
    cursor: default;
}
ul.ordered-list > li:before {
    content:counter(li); /* Use the counter as content */
    counter-increment:li; /* Increment the counter by 1 */
    /* Position and style the number */
    position:absolute;
    top:-2px;
    left:-2em;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    width:2em;
    /* Some space between the number and the content in browsers that support
       generated content but not positioning it (Camino 2 is one example) */
    margin-right:8px;
    padding:4px;
    border-top:2px solid #947F69;
    color:#fff;
    background:#947F69;
    font-weight:bold;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-align:center;
}

ul.ordered-list > li:hover, ol > li:hover {
	border-color: #4b4136;
	 }

ul.ordered-list > li:hover:before, ol > li:hover:before {
	background-color: #4b4136;
	border-color: #4b4136; }

.ordered-list li ul,
.ordered-list li ul {margin-top:5px;}
.ordered-list ul ul li:last-child {margin-bottom:0;}



body {
  font: 13px/20px 'Roboto', sans-serif;
  color: #947F69;
}

.a{color: #c4d4b6; 
}

hover:a{color:black;}