/* CheckBox
 * 
 * Styling CheckBox mainly includes:
 * 
 * 1. Containers
 * 		.dijitCheckBox|.dijitCheckBoxIcon - for border, padding, width|height and background image
 * 
 * 2. CheckBox within ToggleButton
 * 		.dijitToggleButton|.dijitToggleButtonChecked .* - for background image
 * 
 * 3. Checked state
 * 		.dijitCheckBoxChecked - for checked background-color|image
 * 		.dijitToggleButtonChecked - for border, background-color|image, display and width|height
 * 
 * 4. Hover state
 * 		.dijitCheckBoxHover|.dijitCheckBoxCheckedHover - for background image
 * 
 * 5. Disabled state
 * 		.dijitCheckBoxDisabled|.dijitCheckBoxCheckedDisabled - for background image
 */

.odysen .dijitToggleButton .dijitCheckBoxIcon {
	background-image: url('/stylesheets/odysen4.0/dijit/themes/odysen/images/checkmarkNoBorder.png');
}

.dj_ie6 .odysen .dijitToggleButton .dijitCheckBoxIcon {
	background-image: url('/stylesheets/odysen4.0/dijit/themes/odysen/images/checkmarkNoBorder.gif');
}

.odysen .dijitCheckBox,
.odysen .dijitCheckBoxIcon		/* inside a toggle button */	{
	background-image: url('/stylesheets/odysen4.0/dijit/themes/odysen/form/images/checkboxRadioButtonStates.png'); /* checkbox sprite image */
	background-repeat: no-repeat;
	width: 15px;
	height: 16px;
	margin: 0 2px 0 0;
	padding: 0;
}

.dj_ie6 .odysen .dijitCheckBox,
.dj_ie6 .odysen .dijitCheckBoxIcon		/* inside a toggle button */	{
	background-image: url('/stylesheets/odysen4.0/dijit/themes/odysen/form/images/checkboxAndRadioButtons_IE6.png'); /* checkbox sprite image */
}

.odysen .dijitCheckBox,
.odysen .dijitToggleButton .dijitCheckBoxIcon {
	/* unchecked */
	background-position: -15px;
}

.odysen .dijitCheckBoxChecked,
.odysen .dijitToggleButtonChecked .dijitCheckBoxIcon {
	/* checked */
	background-position: -0px;
}

.odysen .dijitCheckBoxDisabled {
	/* disabled */
	background-position: -75px;
}

.odysen .dijitCheckBoxCheckedDisabled {
	/* disabled but checked */
	background-position: -60px;
}

.odysen .dijitCheckBoxHover {
	/* hovering over an unchecked enabled checkbox */
	background-position: -45px;
}

.odysen .dijitCheckBoxCheckedHover {
	/* hovering over an checked enabled checkbox */
	background-position: -30px;
}


