/* CSS Document */
.threeStateCheckbox {
	width: 13px;
	height: 13px;
	background-image: url(checkboxes.png);
	background-repeat: no-repeat;
	float: left;
	margin-right: 5px;
	margin-top: 4px;
	cursor: pointer;
}

.threeStateSpan {
	cursor: pointer;
	color: #B81421;
}

.tsc_normal {
	background-position: 0 0;
}

.tsc_checked {
	background-position: 0 -13px;
}

.tsc_semi {
	background-position: 0 -26px;
}

.tsc_normal_hover {
	background-position: 0 -39px;
}

.tsc_checked_hover {
	background-position: 0 -52px;
}

.tsc_semi_hover {
	background-position: 0 -65px;
}