
/**********
 * validator.css
 ******/
input[type='radio'],
input[type='checkbox'],
input[type='radio']:focus,
input[type='checkbox']:focus{
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	border: none;
	box-shadow: none;
	-webkit-box-shadow: none;
	outline: none;
}

.global-form-box{
	width: 300px;
	overflow: hidden;
	margin: 30px auto;
}

.form-group {
  width: 100%;
  display: block;
  position: relative;
  padding: 12px 0;
  margin: 0;
}

.form-group .help-block {
  width: 100%;
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 24px;
}
.form-group.has-error .help-block {
  color: #ff0000;
}
.control-label {
  width: 100%;
  display: block;
  white-space: nowrap;
  font-size: 16px;
  line-height: 28px;
  color: #333;
  margin: 0;
  font-weight: normal;
}
.control-label .must {
  font-style: normal;
  color: #ff0000;
  margin: 0 5px 0 0;
}
.control-label .tips{
	color: #666;
	font-size: 14px;
}
.form-group-cell {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}
.form-control {
  width: 278px;
  height: 30px;
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 28px;
  padding: 0 10px;
  color: #333;
  background: #fff;
  border: solid 1px #ddd;
  box-shadow: none;
  -webkit-box-shadow: none;
  outline: none;
  border-radius: 0;
  -webkit-border-radius: 0;
}
.form-control:focus,
.form-control:hover {
  box-shadow: none;
  -webkit-box-shadow: none;
}
.frm-ctrl-box{
	position: relative;
}
.frm-ctrl-clear {
  width: 30px;
  height: 30px;
  display: none;
  overflow: hidden;
  background: url(../images/frm_close.png) no-repeat center center #fff;
  background-size: 16px auto;
  position: absolute;
  right: 1px;
  top: 50%;
  z-index: 10;
  margin-top: -15px;
  cursor: pointer;
}

.frm-radio-box{
	position: relative;
	float: left;
	font-size: 16px;
	line-height: 28px;
	color: #333;
	margin: 0 32px 0 0;
}
.frm-radio-box:last-child{
	margin: 0;
}
.frm-radio-box input[type='radio']{
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
	margin: -2px 8px 0 0;
	background: url(../images/radio_01.png) no-repeat center center / contain;
}
.frm-radio-box input[type='radio']:checked{
	background-image: url(../images/radio_02.png);
}

.frm-btn-group{
	width: 100%;
	overflow: hidden;
	padding: 40px 0;
}
.frm-submit{
	width: 140px;
	height: 40px;
	display: block;
	margin: 0 auto;
	text-align: center;
	border: solid 1px #00a136;
	background: #00a136;
	font-size: 18px;
	line-height: 38px;
	color: #fff;
}
