/* Off state for a ARC radio button */
.radioOff {
	display: inline;
	margin: 0px;
	padding: 2px;
	padding-left: 20px;
	color:#5E5E5E;
	font-family:Arial;
	font-weight:bold;
	font-size:11px;
	background: transparent url(../images/radiobox_off.gif) no-repeat 0% 50%;
}
/* On state for a ARC radio button */
.radioOn {
	display: inline;
	margin: 0px;
	padding: 2px; /* NS 6 problem */
	padding-left: 20px;
	color:#5E5E5E;
	font-family:Arial;
	font-weight:bold;
	font-size:11px;
	background: transparent url(../images/radiobox_on.gif) no-repeat 0% 50%;
}
/* use CSS to full effect with hover states. Ohhh, perty! */
.radioOn:hover {
	color:#444444;
	background-image: url(../images/radiobox_on_hover.gif);
}
.radioOff:hover {
	color:#444444;
	background-image: url(../images/radiobox_off_hover.gif);
}