/* RadioButton
 * 
 * Styling RadioButton mainly includes:
 * 
 * 1. Containers
 * 		.dijitRadio|.dijitRadioIcon - for border, padding, width|height and background image
 * 
 * 2. RadioButton within ToggleButton
 * 		.dijitToggleButton|.dijitToggleButtonChecked .* - for background image
 * 
 * 3. Checked state
 * 		.dijitRadioChecked - for checked background-color|image
 * 		.dijitToggleButtonChecked - for border, background-color|image, display and width|height
 * 
 * 4. Hover state
 * 		.dijitRadioHover|.dijitRadioCheckedHover - for background image
 * 
 * 5. Disabled state
 * 		.dijitRadioDisabled|.dijitRadioCheckedDisabled - for background image
 */
/*@minor-selected-color: spin(saturate(darken(@primary-color, 6), 19), 0);						// Color for various arrows and buttons*/
/*@minor-selected-color: spin(saturate(darken(@primary-color, 6), 19), 0);						// Color for various arrows and buttons*/
/*@base-border-color: spin(desaturate(darken(@primary-color, 29), 44), -1);		// Augmented and used directly by variables to create border colors for various widgets*/
/*@unfocused-clickable-color: spin(saturate(lighten(@primary-color, 5), 10), 0);				// Background color for enabled buttons, text inputs */
/*@border-color: spin(desaturate(darken(@primary-color, 15), 67), 8);						// Border color for (enabled, unhovered) TextBox, Slider, Accordion, BorderContainer, TabContainer*/
/*@hovered-background-color: @minor-selected-color;	// Background color for hover of Button, MenuBar, Accordion pane, Calendar... anything that has a (non-white) color to start with and gets darker on hover*/
/*@selected-border-color: @base-border-color;  							// Selected AccordionPane, tab of nested TabContainer (but plain TabContainer is special)*/
/*@bar-background-color: @secondary-color;								// MenuBar, Toolbar, action bar at bottom of dialog*/
/*@textbox-hovered-background-color: @unfocused-clickable-color;			// Background color when hovering a unfocused TextBox, Select, Editor, or other input widget*/
/*@textbox-focused-background-color: @textbox-background-color;*/
/*@toolbar-button-checked-background-color: @container-background-color;								// a toggled-on button in the toolbar*/
/*@image-form-checkbox-and-radios: "form/images/checkboxRadioButtonStates.png";*/
/*@image-form-checkbox-and-radios-ie6: "form/images/checkboxAndRadioButtons_IE6.png";*/
/*@image-form-common-arrows: "form/images/commonFormArrows.png";*/
.claronb .dijitToggleButton .dijitRadio,
.claronb .dijitToggleButton .dijitRadioIcon {
  background-image: url("../form/images/checkedbox.png");
}
.dj_ie6 .claronb .dijitToggleButton .dijitRadio,
.dj_ie6 .claronb .dijitToggleButton .dijitRadioIcon {
  background-image: url("../form/images/checkedbox.png");
}
.claronb .dijitRadio,
.claronb .dijitRadioIcon {
  /* inside a toggle button */

  background-image: url("../form/images/checkedbox.png");
  /* checkbox sprite image */

  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  margin: 0 2px 0 0;
  padding: 0;
}
.dj_ie6 .claronb .dijitRadio,
.dj_ie6 .claronb .dijitRadioIcon {
  /* inside a toggle button */

  background-image: url("../form/images/checkedbox.png");
  /* checkbox sprite image */

}
.claronb .dijitRadio {
  /* unselected */

  background-position: -105px;
}
.claronb .dijitToggleButton .dijitRadioIcon {
  /* unselected */

  background-position: -107px;
}
.claronb .dijitRadioDisabled {
  /* unselected and disabled */

  background-position: -165px;
}
.claronb .dijitRadioHover {
  /* hovering over an unselected enabled radio button */

  background-position: -135px;
}
.claronb .dijitRadioChecked {
  background-position: -90px;
}
.claronb .dijitToggleButtonChecked .dijitRadioIcon {
  background-position: -92px;
}
.claronb .dijitRadioCheckedHover {
  background-position: -120px;
}
.claronb .dijitRadioCheckedDisabled {
  /* selected but disabled */

  background-position: -150px;
}
