/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 735px;
	height:435px;
	top: 0px;
	/* custom decorations */
	/*border:1px solid #ccc;
	background:url(http://www.pelotoncre.com/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;
	left: 6px;
	top: 0px;
}

/* single scrollable item .scrollable img {
	float:left;
	cursor:pointer;
	width:245px;
	height:226px;
	
}*/


.scrollable .title {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;	
}
.peopleSpacerB {
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 8px;
	padding-left: 15px;
	top: 25px;
}

.peopleSpacerT {
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 8px;
	padding-left: 15px;
	background-color:#21395f;
}
.scrollable .subtitle {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #FFFFFF;	
}

.scrollable .subtitleBk {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #000000;	
}

.scrollable .caption {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #FFFFFF;
}
.scrollable .captionBk {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #000000;
	word-spacing: 15pt;
}

.displayer {
	float:left;
	margin:0px 0px 0px 0px;
	padding:0px;
	cursor:pointer;
	width:245px;
	height:435px;
	background-color:#FFFFFF;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
}

/* active item */
.scrollable .active {
	z-index:100;
	position:relative;
}