.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}

/*
input[type="text"], textarea {
	width: 100%;
}
*/

input[type="radio"] {
	display: none;
}
input[type="radio"] + label span {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: -1px 4px 0 0;
	vertical-align: middle;
	background: url(/pct/images/radio_check.png) left top no-repeat;
	cursor: pointer;
}
input[type="radio"]:checked + label span {
    background:url(/pct/images/radio_check.png) -20px top no-repeat;
}

input[type="radio"] + label:hover {
	background-color: #ddd;
}

input[type="checkbox"] {
	display: none;
}
input[type="checkbox"] + label span {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: -1px 4px 0 0;
	vertical-align: middle;
	background: url(/pct/images/radio_check.png) -40px top no-repeat;
	cursor: pointer;
}
input[type="checkbox"]:checked + label span {
    background:url(/pct/images/radio_check.png) -60px top no-repeat;
}
input[type="checkbox"] + label:hover {
	background-color: #ddd;
}

label.radio-label , label.checkbox-label {
	display: block;
	cursor: pointer;
	padding: 0 4px;
}

label.radio-label:hover, label.checkbox-label:hover {
	background-color: #eaeae8;
}

div.likert-container {
	width: 100%;
}

div.likert {
	float: left;
}
div.likert:hover {
	background-color: #eaeae8;
}

.clear { clear: both; }