/* custom forms styles */
.customForm-hidden {
	display: block !important;
	position: absolute !important;
	left:-9999px !important;
}
/* custom checkbox styles */
.chk-area {
	margin: 0 8px 0 0;
	float: left;
	height: 18px;
	width: 18px;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	border:2px solid #cecece;
}
.chk-area span {
	float:right;
	width: 17px;
	height:14px;
	margin:-2px -4px 0 0;
	opacity:0;
	-webkit-transition: all 0.3s ease-out;	transition: all 0.3s ease-out;
	background:url(../images/bg-checkbox.png) no-repeat;
}
.chk-checked span {
	opacity:1;
}
/* radio button styles */
.rad-area {
	margin: 0 9px 0 0;
	float: left;
	overflow: hidden;
	height: 18px;
	width: 18px;
	-webkit-box-sizing:border-box;	box-sizing:border-box;
	border:2px solid #ccc;
	-webkit-border-radius:50%;	border-radius:50%;
	position:relative;
}
.rad-area span {
	display: block;
	width: 10px;
	height: 10px;
	-webkit-border-radius:50%;
	border-radius:50%;
	margin:2px 0 0 2px;
	position:relative;
	-webkit-transition: all 0.3s ease-out;	transition: all 0.3s ease-out;
}
.rad-checked span {background:#757776;}
/* custom select styles */
.select-area {
	position: relative;
	overflow: hidden;
	margin: 0;
	height: 45px;
	width:auto !important;
}
.select-area .select-opener {
	position: absolute;
	z-index: 3;
	top: 0;
	right: 0;
	width: 44px;
	height: 100%;
	cursor:pointer;
}
.select-area .select-opener:after{
	content:'';
	border:5px solid transparent;
	border-top:5px solid #2e2e2e;
	position:absolute;
	top:50%;
	right:50%;
	margin:-2px -2px 0 0;
}
.select-area .center {
	background:#fff;
	border:2px solid #ccc;
	white-space: nowrap;
	position: relative;
	overflow:hidden;
	text-overflow:ellipsis;
	cursor: default;
	display: block;
	color:#666;
	padding:10px 35px 10px 10px;
	z-index: 2;
	line-height:21px;
}
.options-overflow div.drop-list {
	overflow: auto;
}
.options-hidden {
	position: absolute !important;
	top: -9999px !important;
	left: -9999px !important;
}
.select-options {
	z-index: 3000;
	position: absolute;
	padding:2px 0;
}
.select-options .drop-holder {
	border: 2px solid #ccc;
	background: #fff;
	overflow:hidden;
	position:relative;
}
.select-options div.drop-list {width: 100%;}
.select-options ul {
	overflow: hidden;
	list-style: none;
	width: 100%;
	padding: 0;
	margin: 0;
	position:relative;
	z-index:2;
}
.select-options ul li {
	overflow: hidden;
	float: left;
	width: 100%;
}
.select-options ul a {
	text-decoration: none;
	cursor: default;
	display: block;
	overflow: hidden;
	height: 1%;
	padding:5px 10px;
	font-size:16px;
	line-height:21px;
	color:#666;
}
.select-options ul a span {
	cursor: default;
	float: left;
}
.select-options .item-selected a {
	text-decoration: none;
	background: #666;
	color: #fff;
}
.select-options ul a:hover {text-decoration: none;}
.select-options ul a:focus {outline: none;}