/* hide original element */
.jcf-hidden {
	display: block !important;
	position: absolute !important;
	left: -9999px !important; /* change to right: -9999px on RTL sites */
}
/* custom checkbox styles */
.chk-area {
	background:url(../images/bg-sprite.png) no-repeat 0 -131px;
	margin: 0 11px 0 0;
	float: left;
	width: 20px;
	height: 19px;
}
.chk-checked {
	background:url(../images/bg-sprite.png) no-repeat 0 -104px;
}
.chk-focus {
	border-color: #f00;
}
.chk-disabled {
	background: #eee;
}
.jcf-label-disabled {
	color: #ccc;
}
/* custom select styles */
.select-area {
	position: relative;
	overflow: hidden;
	cursor: default;
	float:right;
	background:url(../images/bg-sprite.png) no-repeat;
	height:27px;
	box-shadow:0 0 2px  rgba(0, 0, 0, 0.2);
	font-size:12px;
	line-height:14px;
	color:#666;
	margin:3px;
}
.select-area .center {
	white-space: nowrap;
	padding:7px 19px 6px;
	float:left;
}
.select-area .select-opener {
	position:absolute;
	height:27px;
	width:25px;
	background:url(../images/bg-sprite.png) no-repeat 100% -32px;
	right:0;
	top:0;
}
.select-options {
	position: absolute;
	overflow: hidden;
	background: #fff;
	z-index: 2000;
}
.select-options .drop-holder {
	border: 1px solid #e6e6e6;
	overflow: hidden;
	height: 1%;
}
.select-options ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.select-options ul li {
	width: 100%;
	float: left;
	font-size:12px;
	line-height:14px;
}
.select-options ul a {
	text-decoration: none;
	padding: 5px 10px;
	display: block;
	cursor: default;
	color: #666;
	height: 1%;
}
.select-options .item-selected a {
	text-decoration: none;
	background: #e6e6e6;
}
/* select options optgroup example styles */
.select-options .optgroup {
	clear: both;
}
.select-options .optgroup strong {
	display: block;
	padding: 5px;
}
.select-options .optgroup ul a {
	padding-left: 30px;
}
