ul
{
  list-style: none;
  margin: 5px;
  padding: 0;
  color: #555555;
}

label
{
  display: block;
  cursor: pointer;
  padding: 10px;
  border: 1px solid black;
  border-radius: 10px;
  background: #AAB6A2;
  font-weight: bold;
}

label:hover
{
  background: #87907D;
}

label.last
{
    border: 1px solid black;
}

ul ul li
{
  padding: 10px;
  background: #AAB6A2;
  border-radius: 10px;
}

#photo
{
	padding: 10px;
	background: white;
	border: none;
}

input[type="checkbox"]
{
    position: absolute;
    left: -9999px;
}

input[type="checkbox"] ~ ul
{
    height: 0;
    transform: scaleY(0);
}

input[type="checkbox"]:checked ~ ul
{
  height: 100%;
  transform-origin: top;
  transition: transform .2s ease-out;
  transform: scaleY(1); 
}

input[type="checkbox"]:checked + label{
  background: #87907D;
  border-bottom: 1px solid black;
}
