/* 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-checkbox.png) no-repeat 0 -165px;
	margin: 1px 15px 0 0;
	float: left;
	width: 13px;
	height: 13px;
}
.chk-checked {
	background: url(../images/bg-checkbox.png) no-repeat;
}
.chk-disabled {
	background: #eee;
}
.jcf-label-disabled {
	color: #ccc;
}
/* custom radio styles */
.rad-area {
	margin:0 13px 0 0;
	float: left;
	background:url(../images/btn-radio.png) no-repeat 0 100%;
	width: 28px;
	height: 29px;
}
.rad-checked {
	background: url(../images/btn-radio.png) no-repeat;
}
.rad-disabled {
	background: #eee;
}
/* custom select styles */
.select-area {
	position: relative;
	overflow: hidden;
	cursor: default;
}
.select-selection.select-area{
	height: 32px;
	background:url(../images/bg-searcharea.png) no-repeat;
	float: left;
	font:italic 14px/32px 'Roboto Condensed', sans-serif;
	color:#414141;
}
.select-focus {
	border-color: #f00;
}
.select-selection.select-area.select-focus.select-active .select-opener{
	background:url(../images/btn-opener1-active.png) no-repeat;
} 
.select-area .center {
	white-space: nowrap;
	padding: 3px 10px;
}
.select-disabled {
	background: #eee;
}
.select-area .select-opener {
	background: url(../images/btn-opener1.png) no-repeat;
	position: absolute;
	height: 32px;
	width: 25px;
	right: 0;
	top: 0;
}
.select-selection.select-area .select-opener {
	background: url(../images/btn-opener1.png) no-repeat;
	height: 32px;
	width: 25px;
}
.select-options {
	position: absolute;
	overflow: hidden;
	z-index: 2000;
	-webkit-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
	background:#e4e4e1;
	border:1px solid #dbdbdb;
}
.select-options .drop-holder {
	overflow: hidden;
	height: 1%;
}
.select-options ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font:14px/20px 'Roboto Condensed', sans-serif;
}
.select-options ul li {
	width: 100%;
	float: left;
}
.select-options ul a {
	text-decoration: none;
	padding: 5px 10px;
	display: block;
	cursor: default;
	color: #747474;
	height: 1%;
}
.select-options .item-selected a {
	text-decoration: none;
	color: #2e3339;
}
/* 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;
}
