/* Off state for a ARC radio button */
.radioOff {display: block; margin:0px; padding:0px; background: transparent url(../../img/rbNoChecked.gif) no-repeat right 50%; cursor:pointer;}

/* On state for a ARC radio button */
.radioOn {display: block; margin:0px; padding:0px; background: transparent url(../../img/rbChecked.gif) no-repeat right 50%; cursor:pointer;}

form table td .radioOff, form table td .radioOn {width:10px; margin-right:2px;}

/* use CSS to full effect with hover states. Ohhh, perty! */
.radioOn:hover {
	/*background-image: url(on_hover.gif);*/
}
.radioOff:hover {
	/*background-image: url(off_hover.gif);*/
}

