/* root element for scrollable */ 
div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
 
    /* vertical scrollers have typically larger height than width */ 
    height: 250px; 
    width: 200px; 
} 

div.scrollable div.client {
	position:relative;
	text-align:center;
	width:138px;
	margin-left:30px;
}

#scroller {
	margin-left:85px;
	cursor:pointer;
}
/* root element for scrollable items */ 
div.scrollable div.items { 
    position:absolute; 
 
    /* this time we have very large space for the height */ 
    height:20000em; 
}

.flasher {
	position:relative;
	overflow:hidden;
	width: 982px;
	height: 260px;
}

/* root element for scrollable items */
.flasher .items {
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.item {
	float:left;
	cursor:pointer;
	width:982px;
	height:260px;
}

