@charset "utf-8";

/* CSS Document */


 .collapsible {
  background-color: #d2d0c1;
  color: #000000;
  cursor: pointer;
  padding: 18px;
   margin-left: 2%;
   margin-bottom: 5px;
  width: 95%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 14px;

}

.open, .collapsible:hover {
  background-color: #7f7748;
  color: #fff;
}

.collapsible:after {
  content: '\002B';
  color: white;
   font-weight: bold;
  float: right;
  margin-left: 5px;

}

.open:after {
  content: "\2212";
}

.text {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
   width: 95%;
   margin-left: 2%;
  background-color: #f1f1f1;
	margin-bottom: 10px;

}


.smile {
   content: "\263A";
   font-size: 30px;
 } 
 