/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 352px;
	height:160px;
	margin-top:1px;
	margin-bottom:16px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable #testimonial {
	float:left;
	margin:15px 0 0 31px;
	padding:0;
	cursor:pointer;
	width:332px;
	height:150px;
	text-align: left;
}
.scrollable #testimonial strong,
.scrollable #testimonial strong em {
	font-size:13px;
	font-weight: bold;
	text-align: left;
}

.scrollable #testimonial em {
	font-size:11px;
	font-weight: normal;
	text-align: right;
	line-height:17px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}

#praisepp{
height:28px;
width: 357px;
}

#quotes_flash{
padding-top:10px;
min-height: 224px;
}

#spc{
margin-top:8px;
height: 30px;
}


