﻿/* =CUSTOM INPUT PLUGIN
------------------------------------------------------- */

/* wrapper divs */
.custom-checkbox { position: relative; }
	
/* input, label positioning */
.custom-checkbox input {
	position: absolute;
	left: 2px;
	top: 3px;
	margin: 0;
	z-index: 0;
}

.custom-checkbox label {
	display: block;
	position: relative;
	z-index: 0;
	padding-right: 1em;
	line-height: 1;
	padding: 7px 0 3px 30px;
	cursor: pointer;
	font-size: 14px;
}

.custom-checkbox label {
	background: url(../images/checkbox.png) no-repeat; 
}

.custom-checkbox label {
	background-position: -10px -14px;
}

.custom-checkbox label.hover,
.custom-checkbox label.focus {
	background-position: -10px -114px;
}

.custom-checkbox label.checked {
	background-position: -10px -214px;
}

.custom-checkbox label.checkedHover, 
.custom-checkbox label.checkedFocus {
	background-position: -10px -314px;
}

.custom-checkbox label.focus {
	outline: 1px dotted #ccc;
}