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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 285px;
	height:320px;
	border: 0px solid red;
	margin: 0 20px 0 30px;

}

.scrollable h2 {
	margin: 30px 20px 20px 0;	
	padding: 0 0 10px 0;
	font-weight: bold;
	font-size: 1.4em;
	border-bottom: 2px solid #B3171C;
}

/*
	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;
}

.items div {
	float:left;
	width:680px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:0 5px 10px 0;
	background-color:#B3171C;
	padding:2px;
	border:1px solid #B3171C;
	width:100px;
	height:75px;
	border-radius: 4px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scrollable img:hover {
	background-color:#999;
	border:1px solid #999;
}
/*
.scrollable img.coma {
	width: 22px;
	height: 18px;
	border: none;
	background: none;
	float: left;
}
*/

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

.testimonial-content h3 {
	font-size: 1em;
	width: 270px;
	color: #333;
	margin: 0 0 0 5px;
}

.testimonial-content h4 {
	font-size: 0.8em;
	font-weight: normal;
	width: 270px;
	color: #666;
	margin: 0 0 45px 5px;
	margin: 0 0 0px 5px;
}

.testimonial-content p {
	font-size: 1em;
	width: 270px;
	color: #333;
	margin: 0;
}




*:first-child+html .testimonial-content h3 {
	font-size: 1em;
	width: 200px;
	color: #333;
	margin: 0 0 0 5px;
}

*:first-child+html .testimonial-content h4 {
	font-size: 0.8em;
	font-weight: normal;
	width: 200px;
	color: #666;
	margin: 0 0 45px 5px;
}

*:first-child+html .testimonial-content p {
	font-size: 1em;
	width: 260px;
	color: #333;
	margin: 0;
}




/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;		
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../images/hori-large.jpg) no-repeat;
	display:block;
	width:6px;
	height:11px;
	float:left;
	margin:2px 0 0 0;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background-position: 0 -11px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:-6px -11px; }
a.right:active 	{ background-position:-12px -11px; } 


/* left */
a.left				{ margin-left: 100px; } 
a.left:hover  		{ background-position:-6px 0; }
a.left:active  	{ background-position:-12px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(../temp-images/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	



/* position and dimensions of the navigator */
.navi {
	margin-left:10px;
	width:160px;
	height:20px;
	float:left;
}


/* items inside navigator */
.navi a {
	width:9px;
	height:9px;
	float:left;
	margin:3px;
	background:url(../images/navigator.jpg) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {
	background-position:0 -9px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -18px;     
}


.testimonial-content
{   
    font-size: smaller;
}