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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 128px;
	height:77px;
}

/*
	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;
}

.items div {
	float:left;
	width:140px;
}

/* single scrollable item */
.scrollable img {
  float: left;
  padding: 0px;
  width:60px;
  height:50px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}



/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
  width:11px;
  height:21px;
	float:left;
	margin-top:10px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background:url(/images/new_home_page/comArrowRight.gif); clear:right; margin-right: 0px;}


/* left */
a.left				{ background:url(/images/new_home_page/comArrowLeft.gif);margin-left: 0px;margin-right:5px; } 

/* up and down */
 


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	

.sliderMain{
	width:172px;
	position:relative;
	padding:5px 0;
}