@charset "UTF-8";
/* CSS Document */
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 876px;
	height:201px;
	/* custom decorations */
	background-image: url(../images/carousel-bg.png);
	background-repeat: no-repeat;
	float: left;
	margin: 0 0 15px 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;
	
}

.items div {
	float:left;
	width:879px;
}

/* single scrollable item */

.carousel-item {
	float:left;
	margin:7px 0px 0px 0px;
	
	padding:0 5px 0 5px;
	
	width:278px!important;
	
	
}
.carousel-image {
	float:left;
	margin:0px 0px 0px 0px;
	
	padding:2px;
	width:278px!important;
	height:97px;
	
}

.carousel-title{
	float:left;
	margin:0px 0px 0px 0px;
	padding: 0 0 5px 0;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #000;
	font-size: 1.2em;
	width:278px!important;
	height:auto;
	
}

.carousel-text{
	float:left;
	margin:0px 0px 0px 0px;
	font-family: arial;
	color: #fff;
	font-size: 0.655em;
	width:278px!important;
	max-height:30px;
	min-height:30px;
	overflow: hidden;
	
}

.carousel-link{
	float:left;
	margin:0px 0px 0px 0px;
	padding: 0;
	width:278px!important;
	height:auto;
	
}

.carousel-link a{
	float:left;
	margin:0px 0px 0px 0px;
	padding: 0;
		
}

.carousel-link a:hover{
	opacity: 0.5;
		
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}




