﻿
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable-container
{
	position: relative;
	width: 760px;
	height:270px;	
}

.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 760px;
	height:270px;
	margin:5px 0 20px 0;
}

/*
	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 .scroll-items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.scroll-items div {
	float:left;
}

/* single scrollable item */
.scrollable .scroll-item
{
	float: left;
	margin:0;
	width:210px;
	height:270px;
	padding: 0 32px;
	border-right: solid 1px #F4F2E8;
}

.scrollable .no-right-padding
{
	padding-right: 0;
	border-right: none;	
}

.scroll-item h3
{
	color: #E04F3D;
	font-size: 13pt;
	line-height:1.3em;	
	padding: 4px 0 0 0;
}
.scroll-item p
{
	color: #666486;
	font-size: 10pt;
	line-height:1.3em;
}
.scroll-item img
{
	border-bottom: solid 10px #D44716;	
}




