.step{
  display:block;
  border-bottom:#CCC dashed thin;
  margin-left:10px;
  padding:8px;
}
.accordion {
  background-color:#FF9100;
  border-radius: 7px 7px 7px 7px;
    -moz-border-radius: 7px 7px 7px 7px;
    -webkit-border: 7px 7px 7px 7px;
  color: #fff;
  cursor: pointer;
  padding: 5px;
  width: 240px;
  border: none;
  text-align: center;
  outline: none;
  font-size: 0.9em;
  margin-bottom:8px;
}
.active, .accordion:hover {
  background-color: #708090;
}
.accordion:after {
  content: "\2193";
  color: #fff;
  font-weight: bold;
  float: left;
  margin-left: 5px;
}
.active:after {
  content: "\2191";
  color: #fff;

}
.panel {
  padding: 2px 0 2px 0;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel p{
	font-size:0.9em;
}
.panel input{
	border:none;
	height:24px;
	padding-bottom:5px;
	outline:none;
	border-bottom: 1px solid #ccc;
}
.panel button {
	width: 36px;
	margin:8px 0 8px 0;
	padding-right: 110px;
	cursor:pointer;
	outline: none;
	border:none;
	background-color:#fff;
}
