@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,700);
body {
  font-family: 'Roboto Slab', serif;
}
.agenda {
  width: 700px;
  margin: 20px auto;
  border-radius: 10px;
  background: rgba(255,255,255,.7);
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0,0,0,.1);
}
.agenda dt {
  padding: 10px 15px;
  text-align: center;
  font-weight: bold;
  font-size: 22px;
}
.agenda dd {
  margin: 0;
  padding: 10px 15px;
  color: #0000000;
  overflow: hidden;
}
.agenda dd span {
  position: absolute;
}
.agenda ul {
  float: left;
  margin: 0 0 0 50px;
  padding: 0;
  list-style: none;
  width: 100%;
  border-left: 1px solid rgba(255,255,255,.4);
}
.agenda li {
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding: 0 0 5px 10px;
  margin-bottom: 5px;
}
.agenda li:last-child {
  padding-bottom: 0;
  margin: 0;
  border: 0;
}
