/* Off state for a ARC radio button */
.radioOff {
	margin: 0px;
	/* padding:0 0 5px 20px; */
	display:block;
	background: url('/images/profiler/radio_off.gif') no-repeat left 1px;
	cursor:pointer;
	line-height:17px;
}
/* On state for a ARC radio button */
.radioOn {
	display: block;
	margin: 0px;
	 /*padding:0 0 5px 20px; NS 6 problem */
	background: url('/images/profiler/radio_on.gif') no-repeat left 1px;
	cursor:pointer;
	line-height:17px;
}
/* use CSS to full effect with hover states. Ohhh, perty! */
.radioOn:hover {
	color:#f97e26;
}
.radioOff:hover {
	color:#f97e26;
	/*background-image: url(off_hover.gif);*/
}

