div.moreEntry {
  cursor: pointer;
  margin: 10px;
  border: solid 1px #333333;
  padding: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
}
div#moreBox {
  text-align: center;
  padding: 10px;
}
.loadingBar {
  width:90px;
  margin:0 auto;
}
.barlittle {
  background-color: #55ed61;  
  background-image: -moz-linear-gradient(90deg, #4ceb5a 25%, #bff8c4); 
  background-image: -webkit-linear-gradient(90deg, #4ceb5a 25%, #bff8c4);
  border: 0px;
  width: 10px;
  height: 10px;
  float: left;
  margin-left: 5px;
  opacity: 0.1;
  -moz-transform: scale(0.7);
  -webkit-transform: scale(0.7);
  -moz-animation: move 1s infinite linear;
  -webkit-animation: move 1s infinite linear;
}
.appendBlock {
  opacity: 0;
  //background-color: #92baae;
  -webkit-transition: all 0.3s ease;
  -moz-transition:    all 0.3s ease;
  -ms-transition:     all 0.3s ease;
  transition:         all 0.3s ease;
}
.appended {
  opacity: 1;
}
#block_1 {
  -moz-animation-delay: .4s;
  -webkit-animation-delay: .4s;
}
#block_2 {
  -moz-animation-delay: .3s;
  -webkit-animation-delay: .3s;
}
#block_3 {
  -moz-animation-delay: .2s;
  -webkit-animation-delay: .2s;
}
#block_4 {
  -moz-animation-delay: .3s;
  -webkit-animation-delay: .3s;
}
#block_5 {
  -moz-animation-delay: .4s;
  -webkit-animation-delay: .4s;
}
@-moz-keyframes move {
  0%   {-moz-transform: scale(1.2);opacity:1;}
  100% {-moz-transform: scale(0.7);opacity:0.1;}
}
@-webkit-keyframes move {
  0%   {-webkit-transform: scale(1.2);opacity:1;}
  100% {-webkit-transform: scale(0.7);opacity:0.1;}
}

