/*	CSS for customized radio buttons and check boxes */

/* page styles */
	
/*	wrapper divs */
.custom-checkbox, .custom-radio { position: relative; }
	
/* input, label positioning */
.custom-checkbox input, 
.custom-radio input {
	position: absolute;
	left: 5px;
	top: 8px;
	margin: 0;
	z-index: 0;
}

.custom-checkbox label, 
.custom-radio label {
	display: block;
	position: relative;
	z-index: 1;
	padding-right: 0;
	line-height: 1;
	cursor: pointer;
	float:left;
	margin-top: 0;
	margin-right: 8px;
	margin-bottom: 0.3em;
	margin-left: 0;
	padding-top: 0.6em;
	padding-bottom: 0.5em;
	padding-left: 30px;
}

	
/* states */
.custom-checkbox label {
	background-image: url(../../images/checkbox.png);
	background-repeat: no-repeat;
}

.custom-radio label { background: url(../../images/radiobutton.png) no-repeat; }

.custom-checkbox label, .custom-radio label {
	background-position: -10px -14px;
}

.custom-checkbox label.hover,
.custom-checkbox label.focus,
.custom-radio label.hover,
.custom-radio label.focus {
	background-position: -10px -114px;
}

.custom-checkbox label.checked, 
.custom-radio label.checked {
	background-position: -10px -214px;
}

.custom-checkbox label.checkedHover, 
.custom-checkbox label.checkedFocus {
	background-position: -10px -314px;
}

.custom-checkbox label.focus, 
.custom-radio label.focus {

}