

#container {
  position: relative;
  width: 100%;
  margin: 3em auto;
}
.title {
  font-size: 20pt;
  padding: 1em 0;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
  background-color: #2a2c2d;

}
.pager {
  position: absolute;
  top: 0;
  right: 100%;
  z-index: 1;
}
.pager .item {
  position: relative;
  width: 14px;
  height: 12px;
  padding: 2px 4px;
  transition: all 0.2s ease;
}

.pager .item:after {
  display: block;
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-radius: 50%;
  opacity: 0.4;
  font-size: 0;
  transition: all 0.2s ease, font-size 0.1s ease;
}
.pager .item:hover {
  height: 26px;
}
.pager .item:hover:after {
  
  left: -14px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: 1em;
  opacity: 1;
  transition: all 0.2s ease, font-size 0.15s ease 0.1s;
}
.pager .item.pre-hover {
  height: 16px;
}
.pager .item.pre-hover:after {
  
  left: -4px;
  width: 14px;
  height: 14px;
  opacity: 0.5;
}
.pager .item.current:after {
  
  opacity: 1;
}
.scroller {
  text-align: left;

  box-sizing: content-box;
  height: 20em;
  overflow: hidden;
}
.scroller .item {
  position: relative;
  height: 18em;
  padding: 1em 1.5em;
  text-align: center;
}
.scroller .item:nth-child(1n) {
  
}

.items {
  height: 17em;
  overflow: scroll;
}

