.inputp {
	margin-bottom: 0 !important;
}

.hiddenareainput {
  display: none;
  visibility: hidden;
}
.hiddenarealabel {
  padding: 1.0em;
  text-align: center;
  color: rgba(255,0,153,1);
  border-radius:0.6em;
}
.hiddenarealabel:hover {
  color: #000;
}
.hiddenarealabel::before {
  font-size: 12px;
  content: " OPEN ANSWER SECTION";
  vertical-align: text-top;
  display: inline-block;
  width: auto;
  height: auto;
  margin-right: 3px;
  background: rgba(67,137,162,1);
  padding: 0.2em 0.6em 0 0.6em;
  border-radius:0.2em;
  color:#FFF;
}
#hiddenareaexpand {
  max-width:98%;
  height: 0px;
  overflow: hidden;
  transition: height 0.5s;
  background: url(../images/spacer.png/g/600/300);
}
.hiddenareasection {
  padding: 0 20px;
}
#hiddenareatoggle:checked ~ #hiddenareaexpand {
  height: auto;
}
#hiddenareatoggle:checked ~ .hiddenarealabel::before {
  content: " CLOSE ANSWER SECTION";
}