/* page structure */
#wrapper {
  display: block;
  width: 900px;
  margin: 0 auto;
  padding: 35px 0;
}


/* animated elements */
.animateblock {
  padding: 8px 0;
  color: #fff;
  opacity: 0;
  left:100%;
  -webkit-animation: opacity 10s infinite;
  -moz-animation:    opacity 10s infinite;
  -o-animation:      opacity 10s infinite;
  animation:         opacity 10s infinite;
}
/*@keyframes opacity {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}*/
.animateblock.cbp-animated {
  opacity: 1;
  left:0;
  -webkit-transition: all 0.55s linear;
  -moz-transition: all 0.55s linear;
  transition: all 0.55s linear;

}

/* animation transition styles */
.animateblock.left {
  margin-right: -2%;
}
.animateblock.left.cbp-animated {
  margin-right: 1%;
}

.animateblock.right {
  display: block;
  margin-left: 100%;
}
.animateblock.right.cbp-animated {
  margin-left: 70%;
}

.animateblock.top {
  display: block;
  width: auto;
  text-align: center;
  margin-top: -25px;
}
.animateblock.top.cbp-animated {
  margin-top: 0px;
}

.animateblock.btm {
  display: block;
  width: auto;
  text-align: center;
  margin-top: 25px;
}
.animateblock.btm.cbp-animated {
  margin-top: 0;
}

.animateblock.centerleft {
  display: block;
  width: auto;
  text-align: center;
  margin-right: -10%;
}
.animateblock.centerleft.cbp-animated {
  margin-right: 0;
}

.animateblock.centerright {
  display: block;
  width: auto;
  text-align: center;
  margin-left: -10%;
}
.animateblock.centerright.cbp-animated {
  margin-left: 0;
}

.animateblock.center {
  margin-left: 2%;
}
.animateblock.center.cbp-animated {
  margin-left: 42%;
}

.animateblock.size {
  display: block;
  width: 10%;
  text-align: center;
}
.animateblock.size.cbp-animated {
  width: 100%;
  height: 100%;
}
.animateblock.size img {
  max-width: 100%;
  height: auto;
}