ul {
	list-style-type: none;
}

#also ul li::before { 
	content: "";
}

ul li::before {
	content: "\25AA"; /* square bullet */
	font-weight: bold;
	display: inline-block;
	width: 1em;
	font-family: Arial;
	margin-left: -1em;
}

ul li.new::before {
	color: red;
}

section.unmarked ul li.new::before {
	color: black;
}