/*	CSS for customized radio buttons and check boxes */

/* page styles */
body {
	
}

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; }
	
/* input, label positioning */
.custom-checkbox input, 
.custom-radio input {
	position: absolute;
	left: 2px;
	top: 3px;
	margin: 0;
	z-index: 0;
 	opacity:0;
}

.custom-checkbox label, 
.custom-radio label {
	display: block;
	position: relative;
	z-index: 1;
	padding-right: 1em;
	padding: 0 0 0 20px;
	margin: 0 0 .3em;
	cursor: pointer;
      color:#000;
      letter-spacing:0.5px;
}

	
/* states */
.custom-checkbox label { background:url(../images/checkbox.png) left top no-repeat; }

.custom-radio label { background: url(images/radiobutton.gif) no-repeat; }

.custom-checkbox label, .custom-radio label {
	background-position: 0 4px;
 
}

.custom-checkbox label.hover,
.custom-checkbox label.focus,
.custom-radio label.hover,
.custom-radio label.focus {
	background-position: 0px 4px;
}

.custom-checkbox label.checked, 
.custom-radio label.checked {
	background-position: 0px -185px;
}

.custom-checkbox label.checkedHover, 
.custom-checkbox label.checkedFocus {
	background-position: 0px -185px;
}

.custom-checkbox label.focus, 
.custom-radio label.focus {
	outline: none;
}

