@charset "utf-8";
/* CSS Document */

.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 830px;
	height:180px;
}

/*
	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 .entries {
	/* this cannot be too large */
	height:80px;
	position:absolute;
	width:10000em;
	clear:both;
}

#pl_all .scrollable .entries a {
	background:transparent url(images/entry.png) no-repeat scroll 0%;
	background-position:0px 0;
	color:#666;
	float:left;
	font-family:"verdana";
	font-size:10px;
	height:190px;
	margin-left:4px;
	padding:10px;
	text-decoration:none;
	text-align:center;
	width:79px;
	
}

#pl_all .scrollable .entries a:hover {
	background-position:-100px 0;
	color:#000;
}

#pl_all .scrollable .entries a.progress {
	opacity:0.8;
}

#pl_all .scrollable .entries samp {	
	color:#cc0000;
	font-family:"verdana";
	font-style:normal;
	font-weight:bold;
}

#pl_all .scrollable .entries .samp_blue {	
	color:#0066CC;
	font-family:"verdana";
	font-style:normal;
	font-weight:bold;
}

#pl_all .scrollable .entries .samp_black {	
	color:#000000;
	font-family:"verdana";
	font-size:8px;
	font-style:normal;
	font-weight:bold;
}

.scrollable .entries em {	
	float:right;
	margin-top:1px;
	margin-bottom:14px;
	color:red;
	font-style:normal;
}

/* single scrollable item */
.scrollable img {
	float:left;
	cursor:pointer;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	z-index:9999;
	position:relative;
}

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

/* prev, next, prevPage and nextPage buttons */
#pl_all a.browse {
	background:url(images/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin-top:70px;
	margin-left:12px;
	margin-right:12px;
	cursor:pointer;
	font-size:1px;
}

/* right */
#pl_all a.right 				{ background-position: 0 -30px; clear:right;}
#pl_all a.right:hover 		{ background-position:-30px -30px; }
#pl_all a.right:active 	{ background-position:-60px -30px; } 


/* left */
#pl_all a.left				{} 
#pl_all a.left:hover  		{ background-position:-30px 0; }
#pl_all a.left:active  	{ background-position:-60px 0; }

/* up and down */
#pl_all a.up, a.down		{ 
	background:url(../img/scrollable/arrow/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
#pl_all a.up:hover  		{ background-position:-30px 0; }
#pl_all a.up:active  		{ background-position:-60px 0; }

/* down */
#pl_all a.down 				{ background-position: 0 -30px; }
#pl_all a.down:hover  		{ background-position:-30px -30px; }
#pl_all a.down:active  	{ background-position:-60px -30px; } 


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

