<blockquote class="gkTestimonial col2 animate">
gkTestimonial
It seems to be missing in the documentation, is there a complete list some where?
I have triede google and the forum, but no luck

/* Testimonial - animation */
.gkTestimonial.animate {
opacity: 0; filter: alpha(opacity=0);
position: relative;
-webkit-transition: all .4s ease-out;
-moz-transition: all .4s ease-out;
-ms-transition: all .4s ease-out;
-o-transition: all .4s ease-out;
transition: all .4s ease-out;
}
.gkTestimonial.animate.loaded {
opacity: 1; filter: alpha(opacity=100);
}
.gkTestimonial.animate.col2,
.gkTestimonial.animate.col3,
.gkTestimonial.animate.col4 {
left: -300px;
}
.gkTestimonial.animate.col2 + .gkTestimonial.animate.col2,
.gkTestimonial.animate.col3:nth-child(3),
.gkTestimonial.animate.col4:nth-child(4) {
left: 300px;
}
.gkTestimonial.animate.col2.loaded,
.gkTestimonial.animate.col3.loaded,
.gkTestimonial.animate.col4.loaded {
left: 0!important;
}