ol.articles li {
	margin-left: 30px;

}

ol.articles {
	list-style: none;
	counter-reset: item;
	margin-top: 10px;
}

ol.articles>li {
	counter-increment: item;
	margin-bottom: 14px;

   font-size: calc(10px + 0.8vmin);
	text-align: justify;
}



ol.articles>li:before {
	margin-right: 5px;
	content: counter(item) '.';
	font-weight: bold;
	border-radius: 100%;

	width: 1.2em;
}

ol.articles-non-numeric li {
	margin-left: 45px;

}

ol.articles-non-numeric {
	list-style-type: "— ";
	counter-reset: item;
	margin-top: 10px;
}

ol.articles-non-numeric-disc {
	list-style-type: disc;
	counter-reset: item;
	margin-top: 10px;
	   font-size: calc(10px + 0.8vmin);
	counter-increment: item;
}






ol.articles-non-numeric>li {
	counter-increment: item;
	margin-bottom: 5px;

		   font-size: calc(10px + 0.8vmin);
}

ol.articles-non-numeric>li:before {
	margin-right: 5px;
	
	font-weight: bold;
	border-radius: 100%;

	width: 1.2em;
}

