@CHARSET "UTF-8";

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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 660px;
	height: 170px;

	/* custom decorations */
	border:0 solid #ccc;
	padding: 0;
	background: transparent url('/images/scrollable-hor-bg.png') repeat-x center top;
}

/*
	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;
	padding: 0;
	margin: 0 6px 0 6px;
}

/* single scrollable item */
.scrollable-item {
	position: relative;
	display: block;
	float:left;
	margin:0;
	padding:10px 6px 10px 6px;
	background: transparent url('/images/scrollable-hor-item-dropshadow.png') no-repeat right bottom;
	border:0 solid #ccc;
	outline: none;
}
.scrollable-item img {
	cursor:pointer;
	border:0 solid #ccc;
	display: block;
	width:150px;
	/*height:150px;*/
}
.scrollable-item.recept img {
	width:150px;
	/*height:80px;*/
}
.scrollable-item.recept .thumb-canvas {
	background: #FFF;
	display:block;
	width: 150px;
	height: 150px;
	overflow: hidden;
}
.scrollable-item.recept .p {
	color: #666;
	display:block;
	padding: 0px 5px 0 5px;
	line-height: 10px;
	font-size: 9px;
}
.scrollable-item.recept .a {
	position: absolute;
	left: 0;
	bottom: 0;
}
a.scrollable-item {
	text-decoration: none !important;
}

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


