
#footerMenu {
  background-color:rgba(255,255,255,0.3);
  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);
  font-size:13px;

}
#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 {
	width:50%;
	margin:auto;
}
#footerMenu ul.navigation li {
  margin-top: 0px;
  float: left;
  margin-right: 0px;
  width:20%;
  padding:0px 0 0 0;
}
#footerMenu ul.navigation li a:hover {
  background-color:rgba(255,255,255,0.7);
  color: #000;
  transition-duration:1s;
}
#footerMenu ul.navigation li a {
  text-decoration: none;
  color: #000;
  background:noen;
  border-radius: 0px;
  height:120px;
  width:100%;
  display:block !important;

}


@media only screen and (max-width: 880px) {
#footerMenu ul {
	width:100%;
	margin:auto;
}
#footerMenu {
  
  font-size:10px;
}	
}