#shortcutsContainer {
  margin: 2em 0;
}

#shortcuts {
  font-family: 'DaunPenh';
}

.shortcuts {
  border: 1px solid #373D47;
  border-radius: 3px;
  color: white;
  float: left;
  position: relative;
  width: 25%;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.75);
  -webkit-transition: all 50ms ease-in-out;
  -moz-transition: all 50ms ease-in-out;
  -ms-transition: all 50ms ease-in-out;
  -o-transition: all 50ms ease-in-out;
  transition: all 50ms ease-in-out;
}

.shortcuts:hover {
  top: -3px;
  -webkit-transition: all 175ms ease-in-out;
  -moz-transition: all 175ms ease-in-out;
  -ms-transition: all 175ms ease-in-out;
  -o-transition: all 175ms ease-in-out;
  transition: all 175ms ease-in-out;
}

.shortcuts:first-child {
  margin: 0;
}

#shortcuts .glue {
  float: left;
  height: 1px;
  width: 6%;
}

.shortcuts > img {
  display: block;
  position: relative;
  width: 100%;
  height: 126px;
  z-index: 3;
}

.shortcuts > .captions {
  background-color: rgba(29, 29, 29, 0.4);
  bottom: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#661D1D1D,endColorstr=#661D1D1D)"; /* IE8 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#661D1D1D,endColorstr=#661D1D1D);   /* IE6 & 7 */
  font-size: 2em;
  height: 29%;
  padding: 3% 3% 0;
  position: absolute;
  width: 94%;
  z-index: 5;
}