.personal {
	color: rgb(36, 153 ,152);
	font-weight: bold;
	margin-right: 0.75em;
}

.reserved {
	color: rgb(63, 127, 197);
	font-weight: bold;
	margin-right: 0.75em;	
}

.list-s,
.list-d {
	margin-left: 1.5em;
}

.list-s {
	list-style-type: square;
}

.list-d {
	list-style-type: disc;
}

.list-n {
	list-style-type: none;
	margin-left: 3em;
}

.list-n > li {
	counter-increment: number;
	position: relative;
}

.list-n > li::before {
	content: "(" counter(number) ")";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 3em;
	text-align: right;
	margin-left: -3.25em;
}

td {
	list-style-type: none;
}

.split > p ~ p {
	margin-top: 0.2em;
	border-top: 1px dashed #6e6e6e;
	padding-top: 0.4em;
}