/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
#scroller {
	width: 990px;
	margin: 0 -30px 40px;
	padding: 30px 0 10px;
	background: #f2f2f2 url('../images/scroller-bg.png') repeat-x;
	border-top: 1px solid #dfdfdf;
	border-bottom: 1px solid #dfdfdf;
}
#scroller .scrollable {
	position: relative;
	overflow: hidden;
	width: 930px;
	margin: 0 30px;
	height: 180px;
}

.scroller-link {
	float: left;
	background: #fff;
	border: 1px solid #ddd;
	padding: 4px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
.works-scroller:hover a.scroller-link {
	border-color: #bfbfbf;
}

.scroller-head h2 {
	float: left;
	width: 600px;
}
.scroller-head  ul {
	float: right;
	height: 25px;
}
#wrapper .scroller-head  ul li {
	float: left;
	list-style: none;
	line-height: 25px;
	height: 25px;
}
.scroller-btns {
	margin-left: 10px;
	padding-left: 9px;
	border-left: 1px solid #ddd;
}

.scroller-btns a {
	margin-left: 1px;
}

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

#scroller .items div.panel {
	float: left;
	position: relative;
}

#scroller .items div.panel div.works-scroller {
	float: left;
	width: 210px;
	height: 160px;
	margin-right: 30px;
}

/* single scrollable item */
#scroller .scrollable img {
	display: block;
}

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

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display: inline-block;
	background-image: url('../images/scroller-arrows.png');
	background-repeat: no-repeat;
	width: 25px;
	height: 25px;
	cursor: pointer;
	font-size: 1px;
}

/* right */
a.arrowright 		{ background-position:  -25px 0; clear:right;}
a.arrowright:hover 	{ background-position: -25px -25px; }

/* left */
a.arrowleft:hover  	{ background-position: 0 -25px; }


/* disabled navigational button */
a.disabled {
	filter: alpha(opacity=10) !important;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)"; /*--IE 8 Transparency--*/
	opacity: 0.1 !important;		
}

a.disabled:hover {
	cursor: default;
}