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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 920px;
	height:309px;
	
}

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

/* single scrollable item */
.scrollable img {
	float:left;
	background-color:#fff;

}

/* active item */

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

.items div {
	position: relative;
}

.items div span.promo {
	height: 309px;
	width: 250px;
	position: absolute;
	top: 0px;
	color: #FFF;
	right: 40px;
	padding: 20px;
	background-image:url(../../images/black_transparancy.png);

}

.items div span.promo a {
	color: #fff;
}

.items div span.promo a:hover {
	color: #fff;
	text-decoration: none;
}

.items div span.promo h3 {
	margin: 0px;
	font-size: 16px;

}
.items div span.promo h3.special {
	color: #FF0;
	font-size: 16px;
}

.items div span.promo a.hide {
	color: #FFF;
	position: absolute;
	top: 10px;
	right: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-decoration: none;
	margin: 0px;
	line-height: 11px;
	display: block;
	height: 11px;
	width: 11px;
	text-align: right;
}

.items div span.promo .slideButton:link, .items div span.promo .slideButton:visited  {
	color: #FFF;
	display: block;
	width: 112px;
	position: absolute;
	left: 20px;
	bottom: 55px;
	background-image: url(/images/learn_more_red_button.png);
	height: 28px;
	background-repeat: no-repeat;
	background-position: left top;
}

.items div span.promo .slideButton:hover, .items div span.promo .slideButton:active  {
	background-position: right top;	
}
.items div span.promo .slideButton span{
	display: none;
}

