/*div#dj_scroll {
width: 1154px;
height: 200px;
background: url(../media/img/block_bg_op-20.png);
position: absolute;
left: 50%;
margin-left: -577px;
top: 522px;	
}*/



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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 990px;
	margin-left: 5px;
		height:190px;
		padding-left: 5px;
}

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

.scrollable .items div {
	float:left;
	width:990px;
}

.scrollable .items div.item {
	text-align: center;
	margin-left: 20px;
	margin-right: 20px;
}


.scrollable .items .item div {
	float:left;
	width:140px;
	text-align:center;
	color:#B5AC7B;
	overflow:hidden;
	height:200px;
	font-size: 120%;
	line-height: 90%;
}


/* single scrollable item */
.scrollable img {
	float:left;
	padding:2px;
	width:92px;
	height:135px;

	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	margin: 20px 10px 15px;
}

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


/* dj list scroller */

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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 990px;
	height:600px;
	top: 50px;
	left: 50%;
	margin-left: -490px;
}

/*
	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_djl .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.scrollable_djl .items div {
	float:left;
	width:990px;
}
/*div.list_item {
	display: none;
	width: 130px;
	margin-bottom: 20px;
	overflow: hidden;
}*/
/* single scrollable item */
.scrollable_djl img {
	float:left;
	margin: 10px 5px 10px 21px;
	padding:2px;
	width:92px;
	height:135px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

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


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


/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(http://www.sceedle.com/media/img/scroll_btns.png) no-repeat;
	display:block;
	width:78px;
	height:90px;
	margin-left:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-top:210px;
	cursor:pointer;
	font-size:1px;
        position:absolute;

}

/* right */
a.right 				{ right: -59px;background-position: 0 0px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:0 -93px; }
a.right:active 	{ background-position: 0 -93px; } 


/* left */
a.left				{ left: -59px; margin-left: 5px; background-position:0 -186px;} 
a.left:hover  		{ background-position:0 -279px; }
a.left:active  	{ background-position: 0 -279px; }



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






