/* Workaround for huge native checkboxes (e.g. KDE Oxygen style) */
.gxtCustomCheckboxes input[type=checkbox] {
	position: absolute;
	left: -9999px!important;
	top: -9999px!important;
}

.gxtCustomCheckboxes input[type=checkbox] + label {
	padding-left: 20px;
	border: 1px dotted transparent;
	height: 15px; 
	min-height: 15px;
	background-image: url(../img/lite-blue-check.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}

.gxtCustomCheckboxes input[type=checkbox]:checked + label {
	background-position: 0 -15px;
}

.gxtCustomCheckboxes input[type=checkbox]:focus + label {
	border: 1px dotted #888;
}
