#introText a {
  color: #000;
  text-decoration: none;
}

#introText a:hover {
  color: #ffb280;
}

#introText ul {
  display: inline-block;
}

.date {
  position: relative;
    padding: 10px 0 0;
    text-align: center;
}

.date div {
  /*visiblity: hidden; */

  display: none;
  position: absolute;
  bottom: 50px;

   /* approx adjustment for arrow */
  margin-left: 0px; /* approx adjustment for arrow */
}

.date a:hover + div {
  cursor: pointer;
  display: block;
  /*visibility: visible; */
  width: 240px;
  line-height: 20px;
  padding: 8px;
  font-size: 14px;
  text-align: left;
  z-index: 999;
  color: #000;
  background: rgb(255, 255, 255);
  border: 4px solid rgb(255, 255, 255);
  border-radius: 5px;
  text-shadow: rgba(0, 0, 0, 0.0980392) 1px 1px 1px;
  box-shadow: #333 -4px 4px 16px 2px;
  -webkit-transition: opacity 100ms ease-in;
  -o-transition: opacity 100ms ease-in;
  -moz-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
  pointer-events: none;

}

.date div:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: transparent #FFFFFF transparent transparent;
  bottom: -20px;
  left: 65px;
    transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}
