
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	float: left;
	position:relative;
	overflow:hidden;
	width: 820px;
	height:177px;

	/* custom decorations */
	margin-left: 30px;
	/*background: #CCC;
	/*border:1px solid #ccc;
	background:url(/img/global/gradient/h300.png) repeat-x;*/
}

/*
	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;
	
	/*background: #CCC;*/
}

/* single scrollable item */
.scrollable img {
	border: 3px solid #ccc;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scrollable .items li {
	display: block;
	float:left;
	margin:0 5px;
	/*background-color:#fff;*/
	padding:2px;
	/*border:1px solid #ccc;*/
	cursor:pointer;
	width:257px;
	text-align: center;
	height:175px;
	
}

.scrollable .items a	{}
.scrollable .items a:hover	{}

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

.browse	{cursor: pointer;display: block;height: 30px;width: 27px;margin-top: 70px;text-indent:  -9999px;}
.nextPage	{background: transparent url('../images/ui/gallery-right_arrow.jpg') no-repeat 0 0;}
.prevPage	{background: transparent url('../images/ui/gallery-left_arrow.jpg') no-repeat 0 0;}
.nextPage:hover, .prevPage:hover	{background-position: 0 -30px;}


