/*Testimonial box and font style and colours*/
.testimonial {
	background-color: #f2f2f2; /*Change colour here and in .arrow-down*/
	float: left;
	font: italic 17px/22px Georgia, "Times New Roman", Times, serif;
	color: #53646d;
	text-shadow: 1px 1px 0 #ffffff;
	height: auto;
	width: 880px;
	padding-top: 20px;
	padding-right: 25px;
	padding-bottom: 20px;
	padding-left: 25px;
	text-align: center;
/*Uncomment to add round corners*/
/*	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px; */
}
/*Author section wrapper*/
.author-wrapper {
	width: 100%;
	margin-bottom: 20px;
	float: left;
}
/*This creates the arrow with no need for an image, thanks to css-tricks.com*/
.arrow {
	float: left;
	margin-left: 25px;
	width: 0; 
	height: 0; 
	border-top: 30px solid #f2f2f2; /*Change colour here to match .testimonial*/
	border-left: 30px solid transparent;
	border-right: 0px solid transparent; /*Make this 30px to create a triangle*/
}
/*Author Name*/
.testimonial-name {
	float: left;
    margin: 0 8px;
	color: #1e4673;
	padding-top: 5px;
	font: bold 15px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}
/*Author Job Title*/
.testimonial-name span {
    color: #53646d;
	font-weight: normal;
}​
