/* Off state for a ARC checkbox */
.checkboxOff {
  display: inline;
  margin: 0px;
  padding: 2px; /* NS 6 problem */
  padding-left: 20px;
  color: red;
  line-height: 16px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 1em;
  background-image: url(checkbox_off.gif);
  background-repeat: no-repeat;
  background-position: 0% 50%;
  border: 0px;
	cursor: pointer;
}

/* On state for a ARC checkbox */
.checkboxOn {
  display: inline;
  margin: 0px;
  padding: 2px; /* NS 6 problem */
  padding-left: 20px;
  color: green;
  line-height: 16px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 1em;
  background-image: url(checkbox_on.gif);
  background-repeat: no-repeat;
  background-position: 0% 50%;
  border: 0px;
  cursor: pointer;
 
}