/* Off state for a ARC checkbox */
.checkboxOff {
	display: inline;
	margin: 0px;
	padding: 2px; /* NS 6 problem */
	padding-left: 18px;
	color: #000;
	background-image: url(../images/form_elements/Checkbox-regular.gif);
	background-repeat: no-repeat;
	background-position: left 0.3em;
	border: 0px;
}

/*.checkboxOff:hover { background-image: url(../img/form_elements/Checkbox-hover.gif); color:#003399; !important }*/
.checkboxOff:hover { color:#006400 !important; background-image: url(../images/form_elements/Checkbox-hover.gif); }


/* On state for a ARC checkbox */
.checkboxOn {
	display: inline;
	margin: 0px;
	padding: 2px; /* NS 6 problem */
	padding-left: 18px;
	color:#006400;;
	background-image: url(../images/form_elements/Checkbox-checked.gif);
	background-repeat: no-repeat;
	background-position: left 0.3em;
	border: 0px;
}

.checkboxDisabled {
	display: inline;
	margin: 0px;
	padding: 2px; /* NS 6 problem */
	padding-left:18px;
	color: #000;
	background-image: url(../images/form_elements/Checkbox-disabled.gif);
	background-repeat: no-repeat;
	background-position: left 0.3em;
	border: 0px;
}

.checkboxDisabledChecked {
	display: inline;
	margin: 0px;
	padding: 2px; /* NS 6 problem */
	padding-left: 18px;
	color: #000;
	background-image: url(../images/form_elements/Checkbox-disabled-checked.gif);
	background-repeat: no-repeat;
	background-position: left 0.3em;
	border: 0px;
}




