body {
  font: 13px Helvetica, arial, freesans, clean, sans-serif;
  height: 1500px;
}




#footerMenu {
  background: #7CA1CA;
  color: black;
  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: 65px;
  -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 {
  margin-top: 10px;
  float: left;
  margin-right: 16px;
  display: block;
}

#footerMenu ul.navigation li a:hover {
  background-color: #99AABD;
  color: white;
}

#footerMenu ul.navigation li a {
  text-decoration: none;
  padding: .2em 1em;
  color: #fff;
  background-color: #172E48;
  border-radius: 3px;
}