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

.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 537px;
	height:404px;

	/* custom decorations */
}

/*
	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;
	height:404px;
	margin-top:22px;
}

/* single scrollable item */
.scrollable .post {
	float:left;
	padding:2px;
	cursor:pointer;
	width:537px;
	height:404px;
}

/* active item */
.scrollable .active {
	position:relative;
}
 /*--------------------------NAVIGATOR--------------------------------------*/
/* position and dimensions of the navigator */ 
.navi { 
    width:179px; 
    height:65px;
	margin:28px 0px 0px 0px;
	position:absolute;
	top:0px;
	right:0px;
} 

/* active state (current page state) */ 
.active a {
	background-position:0px -61px;
}
/*---------------------------SCOREBOARD------------------------------------*/
/* root element for scrollable */ 
#scoreboard { 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    /* vertical scrollers have typically larger height than width */ 
    height: 35px; 
    width: 568px;
	background:url('images/green_bar_left.gif') top left no-repeat;
}
#scoreboard_wrapper {
	background:url('images/green_bar_right.gif') top right no-repeat;
	width:716px;
	height:35px;
	float:left;
}
 
/* root element for scrollable items */ 
#scoreboard .items { 
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	height:35px;
	margin:0px;
}
#scoreboard p {
	float:left;
	width:568px;
	line-height:35px;
	font-size:1.3em;
	background:url('images/green_tile.gif') repeat-x top left;
	color:#fff;

}
.score_text {
	text-indent:-999999em;
	background:url('images/scoreboard_text.gif') no-repeat top left;
	width:138px;
	height:35px;
	float:left;
}

.sport {
	margin-left:20px;
}
.score {
	margin-left:10px;
}

