
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 530px;
	height:120px;
	margin:0px;
}

/*
	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 div.items {
	/* this cannot be too large */
	width:10000em;
	position:absolute;
	clear:both;
	
}

.items div {
	float:left;
	width:680px;
	align:center;
	
}

/* single scrollable item */
.scrollable img {
	float:left;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	width:100px;
	height:79px;
	diplay:block;
	margin-bottom:5px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

.scrollable a.kk{
display:inline-block;
float:left;
margin-left:25px;
width:100px;
font-family: SHREE_BAN_OTF_0592,SolaimanLipi, Bangla;
color: #666666;
text-align:center;
text-decoration:none;
font-size:11pt;
line-height:11px;
}
.scrollable a.video{
display:inline-block;
float:left;
margin-left:40px;
width:100px;
font-family:SHREE_BAN_OTF_0592, SolaimanLipi, Bangla;
color: #000;
text-align:center;
text-decoration:none;
font-size:13px;
}
.scrollable a.video:hover{
color:#FF0000;

}
.scrollable a.kk:hover{
color:#FF0000;
}