/*-----------------------------------------------------------------------------
Trafalgar Media Advertising Fancy Style Sheet (http://trafmedia.com)

version:	1.0
date:		21st January 2010
author:		Phil Bowell
email:		me@philbowell.com
website:	http://philbowell.com
-----------------------------------------------------------------------------*/

/* Links fade in on hover */

a {
	-webkit-transition-duration: 0.33s;
	-webkit-transition-property: color, padding;
	-o-transition-duration: 0.33s;
	-o-transition-property: color, padding;
}

/* Portfolio thumb nail images */

.item img {
	-webkit-transition-duration: 0.33s;
	-webkit-transition-property: border;
}

/* Showreel Image slight rotation and scale */

.testimonial img {
	-o-transition:-o-transform .33s linear;
	-webkit-transition:-webkit-transform .33s linear;
}
.testimonial img:hover {
	-o-transform:rotate(-2deg) scale(1.1);
	-webkit-transform:rotate(-2deg) scale(1.1);
}