.styleRadio, .styleCheckbox {
	background-repeat: no-repeat !important;
	cursor: pointer;
	z-index: 10;
}

.styleRadio input, .styleCheckbox input {
	position: relative; 
	z-index: 0;
}

.styleRadio {
	background-image: url(../images/radio.png);
	display: inline-block;
	height: 12px;
	overflow: hidden;
	vertical-align: top;
	margin:2px 5px 0 0;
	width: 12px;
}

.styleRadio.rchecked {
	background-position: 0 -13px; /* Radio checked */
}

.styleCheckbox {
	background-image: url(../images/checkbox.png); /* Checkbox not checked */
	display: inline-block;
	height: 12px;
	overflow: hidden;
	vertical-align: baseline;
	margin:0 5px 2px 0;
	width: 12px;
	z-index: 10;
}

.styleCheckbox.cchecked {
	background-position: 0 -13px; /* Checkbox checked */
}
.styleCheckbox + label {position:relative; top:-2px;}