.carousel {
float:left;
}

.carousel_item {
width: 300px;
height:150px;
border: solid 1px #E8E8E8;
padding: 10px;
}

.carousel_item_title {
font-size:16px;
clear:both;
margin-bottom:5px;
font-weight:700;
height:20px;
}

.carousel_item_subtitle {
font-size:14px;
clear:both;
height:50px;
color:#444444;
}

.carousel_item_link {
clear:both;
}

.carousel_item_link a {
color:#FF6600;
}

.carousel_item_logo {
margin-top:10px;
height:50px;
clear:both;
}

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
  position:relative;
	overflow:hidden;
	width: 906px;
	height:250px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
}

/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
*/
.items div {
	float:left;
	width: 430px;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../images/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:70px 10px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background-position: 0 -30px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:-30px -30px; }
a.right:active 	{ background-position:-60px -30px; } 


/* left */
a.left				{ margin-left: 0px; } 
a.left:hover  		{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	


