







/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	top: 6px;
	left: 15px;
	width: 490px;
    height: 130px;
    padding: 0;
	overflow: hidden;
	/* custom decorations */


}




/* 
	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;
	clear:both;
	margin: 0;
	padding: 0;	
	/* decoration */
}

/* single scrollable item */
div.scrollable div.items div{
	/* custom decoration */

	float: left;

}

div.items div img{
	float: left;
	padding: 0;
}

img{
	border: 0;
	padding: 0;
	margin: 0;

}


/* active item */
div.scrollable div.items div.active {

}























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

/* prev, next, prevPage and nextPage buttons */
#also-like a.prev, #also-like a.prevPage{
	position: relative;
	top: 40px;
	display:block;
	width:40px;
	height:40px;
	background:url(../images/like/arrow_left.gif) no-repeat;
	background-position: -44px 5px;
	float:left;
	margin:0;
	cursor:pointer;
	font-size:1px;
}


/* prev, next, prevPage and nextPage buttons */
#also-like a.next, #also-like a.nextPage {
	position: relative;
	top: 40px;
	display:block;
	width:40px;
	height:40px;
	background:url(../images/like/arrow_right.gif) no-repeat;
	float:right;
	clear: left;
	margin:0;
	cursor:pointer;
	font-size:1px;
	background-position: -42px 5px;

}





#also-like a.next:hover, #also-like a.nextPage:hover, #also-like a.prev:hover, #also-like a.prevPage:hover{
	background-position: 2px 5px;
	cursor:pointer;
}











/* disabled navigational button */
#also-like a.disabled {
	background-position: -88px 5px !important;	
}






/* next button uses another background image */
#also-like a.next, #also-like a.nextPage {

	clear:right;	
}









/* position and dimensions of the navigator */






ul.navi li{

	display: inline;
	float: left;
	list-style: none;

}

ul.navi li.hidden{
	padding: 0;
	visibility: hidden !important;

}



ul.navi li a{
	text-decoration: none;
	display: block;
	color: green;
	border: 1px solid black;

}




ul.navi li a:hover{
	color: aqua;
}





ul.navi li.active a{
	color: aqua;
}













