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

/* page styles */
body {
	font-size: 62.5%;
}

fieldset { 
	padding: 0 15px 3em;
	border: 0;
}

legend {
	font-size: 1.4em;
	font-weight: bold;
	padding: .2em 5px;
}

	
/*	wrapper divs */
.custom-checkbox, .custom-radio { position: relative; float:left; width:286px; }
	
/* input, label positioning */
.custom-checkbox input, 
.custom-radio input {
	position: absolute;
	left: 2px;
	top: 3px;
	margin: 0;
	z-index: 0;
}

.custom-checkbox label, 
.custom-radio label {
	display: block;
	position: relative;
	z-index: 1;
	font-size: 12px;
	padding-right: 1em;
	line-height: 1;
	padding: .3em 0 .5em 30px;
	margin: 0 0 .3em;
	cursor: pointer;
	color:rgba(255, 255, 255, 0.66);
}

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

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




.custom-checkbox label.checked, 
.custom-radio label.checked {
	background:url(../images/checked.png) no-repeat;
	color:#fff;
}


.custom-checkbox label.focus, 
.custom-radio label.focus {
	outline: 1px dotted #ccc;
}