#footerMenu {
  background: rgba(0,0,0,0.7);
  color: #FFF;
  width:100%;
  height: 0px;
  position: fixed;
  z-index: 300;
  bottom: 0;
  overflow: none;
  left: 0;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -webkit-box-shadow: 0px -4px 38px rgba(50, 50, 50, 0.50);
  -moz-box-shadow:    0px -4px 38px rgba(50, 50, 50, 0.50);
  box-shadow:         0px -4px 38px rgba(50, 50, 50, 0.50);
}

#footerMenu.show {
  height:140px;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

#footerMenu ul.navigation li {
  text-align:center;
  margin:5px 10px 0 -20px;
  display: block;
  padding-top:20px;
}

#footerMenu ul.navigation li a:hover {
  color: white;
}

#footerMenu ul.navigation li a {
  text-decoration: none;
  color: #fff;
  border-radius: 3px;
  font-size:50px;
}