/* TIMELINE CHARTS */
.timeline { 
  font-size: 0.75em; 
  height: 15em; 
  width: 60em;
}
.timeline li { 
  position: relative;
  float: left;
  width: 2em; 
  margin: 0 0.1em;
  height: 13em; 
}
.timeline li a { 
  display: block;
  height: 100%;  
}
.timeline li .label { 
  display: block; 
  position: absolute; 
  bottom: -2em; 
  left: 0; 
  background: #fff; 
  width: 100%; 
  height: 2em; 
  line-height: 2em; 
  text-align: center;
}
.timeline li a .count { 
  display: block; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  height: 0; 
  width: 100%; 
  background: #AAA; 
  text-indent: -9999px; 
  overflow: hidden; 
}
.timeline li:hover { 
  background: #EFEFEF; 
}
.timeline li a:hover .count { 
  background: #2D7BB2; 
}
