/* 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/img-checkbox.png) no-repeat;
	margin: 0 10px 0 0;
	float: left;
	width: 22px;
	height:21px;
}
.chk-checked {
	background-position:0 100%;
}
/* custom radio styles */
.rad-area {
	border-radius: 10px;
	margin: 0 10px 0 0;
	float: left;
	width: 22px;
	height: 21px;
	background:#55606e;
}
.rad-checked {
	background:url(../images/img-radio-btns.png) no-repeat 0 100%;
}
.row-holder{
	width:100%;
}
.row-holder,.formElementHolder{
	overflow:hidden;
}
.formElementHolder{
	float:left;
	margin:0;
	padding:5px 0;
	border-bottom:1px solid #ccc;
	left:5px;
	position:relative;
}
.label{
	float:left;
	margin:0 10px 0 0;
	line-height:30px;
}
span.label{
	line-height:22px;
}
/* custom select styles */
.select-area {
	position: relative;
	overflow: hidden;
	cursor: default;
	height:30px;
	float: left;
	width:101% !important;
	line-height:30px;
	color:#a7aeb5;
	font-size:14px;
	border-bottom:1px solid #ccc;
}
.formElementHolder .select-area{
	border:0;
	height:22px;
	line-height:22px;
}
/*
.select-area .center {
	white-space: nowrap;
}
.select-disabled {
	background: #eee;
}
.select-area .select-opener {
	background:url(../images/select-opner.png) no-repeat 50% 50%;
	position: absolute;
	height: 30px;
	width: 30px;
	right: 0;
	top: 0;
}
.formElementHolder .select-area .select-opener{
	height:22px;
}
.select-options {
	position: absolute;
	overflow: hidden;
	background: #fff;
	z-index: 2000;
}
.select-options .drop-holder {
	border: 1px solid #777;
	overflow: hidden;
	height: 1%;
}
.select-options ul {
	list-style: none;
	overflow: hidden;
	padding: 0;
	margin: 0;
	max-height:250px;
	overflow-y:auto;
}
.select-options ul li {
	width: 100%;
	float: left;
}
.select-options ul a {
	text-decoration: none;
	padding: 5px 10px;
	display: block;
	cursor: default;
	color: #000;
	height: 1%;
}
.select-options .item-selected a {
	text-decoration: none;
	background: #25afb2;
	color: #fff;
} */
/* 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;
}*/
/* multiple select styles */
/*.select-multiple-area {
	border: 1px solid #777;
	clear: both;
}
.select-multiple-area .multiple-list{
	border: none;
	position: static;
}
.select-multiple-area .multiple-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.select-multiple-area .multiple-list li {
	margin: 0;
}
.select-multiple-area .multiple-list a:hover {
	text-decoration: none;
	background: #fff;
	color: #000;
}
.select-multiple-area .multiple-list a {
	display: block;
	cursor: default;
	padding: 5px;
	color: #000;
}
.select-multiple-area .multiple-list .item-selected a {
	background: #007;
	color: #fff;
}
.select-multiple-area .multiple-list .optgroup strong {
	display: block;
	padding: 5px;
}
.select-multiple-area .multiple-list .optgroup a {
	padding-left: 30px;
}
.select-disabled  .multiple-list .item-selected a {
	background: #777;
}*/
/* textarea example styles (optional) */
.text-block .control-wrapper {
	border: 1px solid #777;
	float: left;
}
.text-block textarea {
	font-size: 12px;
	width: 500px;
	height: 150px;
	float: left;
	border: 0;
	margin: 0;
	padding: 0;
}
/* custom file input */
.file-area .jcf-input-wrapper {
	position: relative;
	overflow: hidden;
	float: left;
	width:100%;
}
.file-area .jcf-upload-button {
	padding: 6px 15px;
	background: #a19d9d;
	color: #fff;
	float: right;
	height: 15px;
	line-height:15px;
	width:20%;
	text-align:center;
}
.formElementHolder .file-area .jcf-fake-input {
	border:0;
	
}
.file-area .jcf-fake-input {
	border-bottom: 1px solid #ccc;
	padding: 0 15px;
	float: left;
	margin: 0 5px;
	width:50%;
	height: 28px;
	min-height:15px;
}
.file-disabled .jcf-upload-button {
	border-color: #eee;
	background-color: #eee;
	color: #777;
}
.file-disabled .jcf-fake-input {
	border-color: #eee;
	color: #aaa;
}



.CustomCheck input[type="checkbox"] {
    display: none;
}

    .CustomCheck input[type="checkbox"] + label span {
        display: inline-block;
        width: 22px;
        height: 21px;
        margin: -1px 4px 0 0;
        vertical-align: middle;
        background: url(../images/img-checkbox.png) no-repeat;
        cursor: pointer;

    }


.CustomCheck .jcf-class-AgreedChk {

    display:none;
}
    .CustomCheck input[type="checkbox"]:checked + label span {
        background-position: 0 100%;
    }

    .CustomCheck input[type="checkbox"]:checked + label:before {
        display: none;
    }
