/*	CSS for customized radio buttons and check boxes */

/* page styles */


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;}
	
/* input, label positioning */
.custom-checkbox input, 
.custom-radio input {
	position: absolute;
	left: 0;
	top: 9px;
	margin: 0;
	z-index: 0;
	visibility:hidden;
}

.custom-checkbox label, 
.custom-radio label {
	display: block;
	position: relative;
	z-index: 1;
	font-size: 1.3em;
	padding-right: 1em;
	line-height: 1;
	padding: .5em 0 0 30px;
	margin: 0 0 0;
	cursor: pointer;
}

	
/* states */
.custom-checkbox label { background: url(../images/check.png) no-repeat; width:auto; height:14px;}

.custom-radio label { background: url(../images/radiobutton.gif) -3px -12px no-repeat; }

/*.custom-checkbox label, .custom-radio label {
	background-position: 0 -17px;
}*/

/*.custom-checkbox label.hover,
.custom-checkbox label.focus,
.custom-radio label.hover,
.custom-radio label.focus {
	background-position: 0 -19px;
}*/

.custom-checkbox label.checked {
	background:url("../images/checked.png") no-repeat scroll 1px -2px; width:auto; height:14px;
	
}

.custom-radio label.checked {
	background: url(../images/radiobutton.gif) -3px -212px no-repeat
	
}

/*.custom-checkbox label.checkedHover, 
.custom-checkbox label.checkedFocus {
	background-position: 0px 6px;
}*/

/*.custom-checkbox label.focus, 
.custom-radio label.focus {
	outline: 1px dotted #ccc;
}*/