/* tooltip styling. uses a background image (a black box with an arrow) */ 
div.tooltip { 
    background:transparent url(http://www.e-tukku.fi/skin/frontend/default/classic/images/tooltip/black_arrow_big.png) no-repeat scroll 0 0; 
    font-size:14px; 
    height:153px; 
    padding:30px; 
    width:310px; 
    font-size:14px; 
    display:none; 
    color:#fff; 
} 
 
/* tooltip title element (h3) */ 
div.tooltip h3 { 
    margin:0; 
    font-size:18px; 
    color:#fff; 
}

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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 500px;
	height:150px;

	/* custom decorations */
	border:1px solid #ccc;
	
	-moz-border-radius:10px;
	-webkit-border-radius:10px;

}

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

/* single scrollable item */
.scrollable img {
	margin-left: 10px;
	margin-bottom: 50px;
	margin-right: 5px;
	margin-top: 10px;
	float:left;
	background-color:#fff;
	padding:2px;
	
	cursor:pointer;
	height:120px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;

	
}

/* active item */
.scrollable .active {
	border:1px solid #000;
	z-index:9999;
	position:relative;
}

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

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(http://www.e-tukku.fi/skin/frontend/default/classic/images/scrollable/arrow/left.png) no-repeat;
	display:block;
	width:18px;
	height:18px;
	float:left;
	margin:5px 5px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right {background:url(http://www.e-tukku.fi/skin/frontend/default/classic/images/scrollable/arrow/right.png) no-repeat;  clear:right; 
display:block;
	width:18px;
	height:18px;
	float:right;
	margin:5px 0px;
	cursor:pointer;
	font-size:1px;

}
a.right:hover 		{ background-position:0px -18px; }
a.right:active 	{ background-position:0px -18px; } 


/* left */
a.left				{ background-image: url(http://www.e-tukku.fi/skin/frontend/default/classic/images/scrollable/arrow/left.png); margin-left: 0px; } 
a.left:hover  		{ background-position:0px -18px; }
a.left:active  	{ background-position:0px -18px; }


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









