/*	CSS for customized radio buttons and check boxes */

/* page styles */

.answerImg{
	position:relative;
	top:-32.5px;
	margin-right:15px;
	margin-top:0px;
	}
fieldset { 
	padding: 0 15px 3em;
	border: 0;
	
}

legend {
	font-size: 18px;
	padding-bottom:20px;
	font-family: 'Raleway', sans-serif;
	font-weight:400;
	font-size:20px;
}

legend .queTitle{
	color:#C60;
	font-size:24px;
	}
legend.imageLegend
{
	padding-bottom:50px;
	font-family: 'Raleway', sans-serif;
	font-weight:400;
	font-size:20px;
	}
	
/*	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;
}

.custom-checkbox label, 
.custom-radio label {
	display: block;
	position: relative;
	z-index: 1;
	padding-right: 1em;
	line-height: 19px;
	padding: 3px 0 10px 30px;
	margin: 0 0 .3em;
	margin-top:10px;
	cursor: pointer;
	vertical-align:top;
	font-family: 'Raleway', sans-serif;
	font-weight:400;
	font-size:18px;
}

	
/* states */
.custom-checkbox label { background: url(../images/checkbox.gif) no-repeat; }

.custom-radio label { background: url(../images/radiobutton.gif) 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 {
	outline: 1px dotted #ccc;
}