/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 880px;
	height:300px;
	z-index: 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 .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	z-index: 0;
}
.scrollable .slide-feature {
	float: left;
	height: 300px;
	width: 880px;
	position: relative;
	z-index: 0;
}
.slide-feature-text {
	position:absolute; /* absolute position (so we can position it where we want)*/
	bottom:0px; /* position will be on bottom */
	left:0px;
	width:840px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	display: block;
	background-color:black;
	opacity:0.85; /* transparency */
	filter:alpha(opacity=85);
}
.slide-feature-text h2  {
	font-size: 26px;
	font-weight: normal;
}
.slide-feature h2   a{
	color:white;
	text-decoration: none;
}
.slide-feature h2 a:hover {
	color: #ACACAC;
}
.slide-feature-text p {
	color: #F0E926;
	font-size: 14px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:0;
	position:relative;
}
.slider-footer {	/* required settings */
	position:relative;
	overflow:hidden;
	width: 705px;
	height:125px;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 30px;
}
.slider-footer .items {	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	z-index: 9;
}
.slider-footer a {
	float: left;
}
.slider-footer img{
	height: 125px;
	width: 125px;
	margin-right: 20px;
}
