/*  
    root element for the scrollable.  
    when scrolling occurs this element stays still.  
*/ 
div.scrollable { 
     
    /* required settings */
    position:relative; 
    overflow:hidden;          
    width: 500px;
    height:175px;
    padding-top: 40px;
    margin-left: 45px;
    margin-right: 45px;
} 
 
/*  
    root element for scrollable items. Must be absolutely positioned 
    and it should have a super large width to accomodate scrollable items. 
    it's enough that you set width and height for the root element and 
    not for this element.
*/ 
div.scrollable div.items {     
    /* this cannot be too large */
    width:20000em;
    position:absolute;
} 
 
/*  
    a single item. must be floated on horizontal scrolling 
    typically this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items img {
    float:left; 
    width: 50px;
    margin-right: 25px;
} 
 
/* you may want to setup some decorations to active item 
div.scrollableFabric div.items div.active, div.scrollableLeather div.items div.active { 
	float:left; 
    width: 93px;
    height: 93px;
    margin-top: 0px;
    background: white;
    margin-right: 9px;
    border: 2px solid #737476;  
}*/ 

.nextTicker {
	position: absolute;
	background: url(/images/left.png) no-repeat;
	right: 0;
	top: 0;
	height: 175px;	
	width: 24px;
	cursor: pointer;
}

.previousTicker {
	position: absolute;
	background: url(/images/right.png) no-repeat;
	left: 0;
	top: 0;
	height: 175px;	
	width: 24px;
	cursor: pointer;
}

.groupTickerTitle {
	position: absolute;
	left: 45px;
	
}
