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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 400px;
	height:300px;

	/* custom decorations */
	border:1px solid #ccc;
	background:url(/img/global/gradient/h300.png) repeat-x;
}
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 400px;
	height:300px;
	float: left;
	/* custom decorations */
	border:1px solid #ccc;
	background:url(/img/global/gradient/h300.png) repeat-x;
}
.scrollable2 {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 300px;
	height:400px;

	/* custom decorations */
	border:1px solid #ccc;
	background:url(/img/global/gradient/h300.png) repeat-x;
}


/*
	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;
}
.scrollable2 .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}


.items div {
	float:left;
	width:400px;
	height: 300px;
}
.items a 
{
	float: left;
	margin: 5px;
	height: 150px;
	width: 100px;
	display: block;
	padding-left:0px;
	padding-right: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 15px;
	color: black;
	text-decoration: none;
	text-align: center;
}
/* single scrollable item */
.scrollable img {
	float:left;
	margin: 0px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	width: 100px;
	height: 75px;

	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}
.item 
{
	width: 200px;
	border: 1px solid black;
	height: 150px;
}

.testimonial
{
	display: block;
	width: 175px;
	margin: 5px;
	padding: 5px;
	height: 300px;
	float: left;
	border: 1px dashed blue;
}
.quote
{
	display: block;
	color: red;
	font-size: 22px;
	height: 210px;
}
.bottom
{
	display: block;
	text-align: right;
	margin-top: 10px;
	font-size: 12px;
}
#qlink
{ 
 float:right;
 padding:0px; 
 display:inline;
 height:auto;
 width:auto;
 color:orange;
 margin:0px;
}

