/* Testimonial Styles */

div.testimonial {
  margin: 0px 0px 30px 0px;
  padding: 20px;
  /*background: #F7F7F7;*/
}

div.testimonial-rating {
  position: relative;
  width: 130px;
  height: 26px;
  margin: 0px 0px 15px 0px;
  background: #CCCCCC;
}

div.testimonial-rating-fg {
  position: absolute;
  width: 130px;
  height: 26px;
  background: url('/images/stars-foreground.png') left top no-repeat;
  z-index: 99;
}

@keyframes colorchange {
  0% {
  }

  100% {
    background: #7AA84D;
  }
}

div.testimonial-rating-bg {
  position: absolute;
  width: 0;
  height: 26px;
  z-index: 98;
  animation-name: colorchange;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

div.testimonial-text {
  line-height: 1.5em;
  text-indent: 35px;
  background: url('/images/quote-start.png') left top no-repeat;
}

div.testimonial-text-inner {
  padding: 0px 0px 25px 0px;
  background: url('/images/quote-end.png') right bottom no-repeat;
}

div.testimonial-by {
}