ul.caution {
	list-style: none;
	padding: 0;
	counter-reset: number;
	position: relative;
}
li.cat {
	padding: 1em 1em 1em 2em;
	line-height: 1.3em;
	border-bottom: dashed 1px #513b139e;
}
li.cat::before{
	display: block;
	width: 1.3em;
	position: absolute;
	text-align: center;
	left: 5px;
	counter-increment: number;
	content: counter(number);
	background-color: #ff6699;
	color: #fff;
	border-radius: 2em;
}
li.cat:nth-child(odd){
	background-color: #dbc83f11;
}
li.cat:last-child{
	border: none;
}

p.cattxt {
	padding: 5px 2px;
}
