
/**
 * Master checkbox styles
 */
.inputCheckboxImg {
	background-image: url(/common/jquery/formTools/checkbox-sprite.png);
	background-repeat: no-repeat;
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-bottom: -3px;
}
.inputCheckboxImg.checked {
	background-position: -16px 0;
}
.inputCheckboxImg.checked.disabled {
	background-position: -16px -16px;
}
.inputCheckboxImg.disabled {
	background-position: 0 -16px;
}

/**
 * Master pill button styles
 */
div.pill-button {
	height: 31px;
	color: #444;
	font-size: 9pt;
	text-align: center;
	cursor: pointer;
	background-repeat: no-repeat;
	background-image: url(/common/jquery/formTools/pill-sprite-blue.png);
}

/**
 * Background images for the pill buttons
 */
.pill-70 {
	width: 70px;
	background-position: 0 0;
}
.pill-100 {
	width: 100px;
	background-position: -70px 0;
}
.pill-130 {
	width: 130px;
	background-position: -170px 0;
}

/**
 * Pressed state for the pill buttons (triggered via javascript)
 */
.pill-70.pressed {
	background-position: 0 -32px;
}
.pill-100.pressed {
	background-position: -70px -32px;
}
.pill-130.pressed {
	background-position: -170px -32px;
}

/**
 * The main div contains this child div which sets the spacing properly
 */
div.pill-inside {
	padding-top: 9px;
	padding-left: 11px;
	padding-right: 14px;
}

.pill-target {
	padding-top: 2px;
}

/**
 * Reset the <a> tags to look like regular text
 */
div.pill-button a {
	text-decoration: none;
	color: #444;
}
div.pill-button a:hover {
	text-decoration: none;
	color: #444;
}

/**
 * For icon-based pill buttons, shift the text slightly right to make room
 */
.pill-img {
	padding-left: 18px;
	background-repeat: no-repeat;
	background-position: left;
}


