
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 752px;
	height:80px;
}

/*
	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.item {
	float:left;
	width:114px;
	height:70px;
	padding: 10px 20px 0px 20px;
	font-size: 12px;
	line-height: 1.4em;
	background: url(../../img/bcg_box_games_line.png) repeat-y  top right;
}

.scrollable div.item.box_games_date {
	width:115px;
	height:60px;
	padding: 20px 0px 0px 20px;
	font-size: 20px;
	line-height: 1.1em;
	text-transform: capitalize;
	float: left;
	color: #2e1500;
}
.scrollable .box_games_date span {display: block; font-size: 12px;line-height: 1.1em}

.scrollable .team {float: left; color: #2e1500;}
.scrollable .team img {margin: 0px 4px -1px 0px;}
.scrollable .score {float: right; color: #2e1500;}
.scrollable .info {
	margin-top: 3px;
	background: url(../../img/bcg_line_box.gif) repeat-x  0px 0px;
	padding: 10px 0px 0px 0px;
	text-align: center;
	font-size:11px;
  color:#f18134 ;
}
.scrollable .info a {color:#f18134;}


/* active item */
.scrollable .active {
	position:relative;
	cursor:default;
}


