/*
 *  CheckBox and Radio Widgets,
 *	and the CSS to embed a checkbox or radio icon inside a ToggleButton.
 *
 *	Order of images in the default sprite (from L to R, checkbox and radio in same image):
 *		checkbox	normal 	 - checked
 *							 - unchecked
 *					disabled - checked
 *							 - unchecked
 *					hover 	 - checked
 *							 - unchecked
 *
 *		radio		normal 	 - checked
 *							 - unchecked
 *					disabled - checked
 *							 - unchecked
 *					hover 	 - checked
 *							 - unchecked
*/

.tundra .tmpdirToggleButton .tmpdirCheckBox,
.tundra .tmpdirToggleButton .tmpdirCheckBoxIcon {
	background-image: url('images/spriteCheckbox.gif');
}
.tundra .tmpdirHTMLCheckBox {
//  margin: 0;
//  padding: 0;
}

.tundra .tmpdirCheckBox,
.tundra .tmpdirCheckBoxIcon {		/* inside a toggle button */
	background-image: url('images/spriteCheckbox.gif'); /* checkbox sprite image */
	background-repeat: no-repeat;
	width: 16px;
	height: 16px;
	margin: 0 2px 0 0;
	padding: 0;
}

.tundra .tmpdirCheckBox,
.tundra .tmpdirToggleButton .tmpdirCheckBoxIcon {
	/* unchecked */
	background-position: -16px;
}

.tundra .tmpdirCheckBoxChecked,
.tundra .tmpdirToggleButtonChecked .tmpdirCheckBoxIcon {
	/* checked */
	background-position: 0px;
}

.tundra .tmpdirCheckBoxDisabled {
	/* disabled */
	background-position: -48px;
}

.tundra .tmpdirCheckBoxCheckedDisabled {
	/* disabled but checked */
	background-position: -48px;
}

.tundra .tmpdirCheckBoxMixed {
	/* checked & mixed */
	background-position: -32px;
	margin: 0 2px 0 0;
}

.tundra .tmpdirCheckBoxHover {
	/* hovering over an unchecked enabled checkbox */

}

.tundra .tmpdirCheckBoxCheckedHover {
	/* hovering over a checked enabled checkbox */
	
}

.tundra .tmpdirCheckBoxCheckedHoverDisabled *{
	/* hovering over a checked enabled checkbox */
	cursor:default !important;
}

.tundra .tmpdirCheckBoxCheckedFocusDisabled *{
	/* hovering over a checked enabled checkbox */
	cursor:default !important;
}

.tundra .tmpdirCheckBoxMixedHover {
	/* checked & mixed */
	
}

