/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
body {
	margin:0px;
	padding:0px;
}

#wrapper {
	font-size:62.5%;
	font-family:helvetica, arial, sans-serif;
	padding:0px;
	margin:0px;
}

.scrollable {

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


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

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

/* 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: 50px; 
    width: 568px;
}
#scoreboard_wrapper {
	width:716px;
	height:50px;
	float:left;
	background: url('images/rec_ticker_bg.jpg') no-repeat;
	
}
 
/* root element for scrollable items */ 
#scoreboard .items { 
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	height:50px;
	margin:0px;
}
#scoreboard p {
	float:left;
	width:568px;
	font-size:1.3em;
	color:#000;
	margin:0;
	line-height:50px;
}

.score_text {
	float:left;
	font-size:1.5em;
	color:#000;
	margin:0px 15px 0px 15px;
	height:35px;
	line-height:52px;
	
	
}

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


