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

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

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
* /
.scrollable .items {
	/* this cannot be too large * /
	width:20000em;
	position:absolute;
}

/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
* /
.items div {
	float:left;
}

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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 630px;
	height:115px;

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

/*
	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;*/
	width:7000px;
	position:absolute;
	clear:both;
}

.items div {
	float:left;
	width:680px;
}

/* single scrollable item */
.scrollable a {
	float:left;
	margin:4px 0px 0px 8px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	/*width:180px;
	height:75px;*/
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

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

/* prev, next, prevPage and nextPage buttons */
#content a.browse {
	/*background:url(../images/hori_large.png) no-repeat;*/
	background-color:#545b72;
	display:block;
	/*width:30px;*/
	width:36px;
	/*height:30px;*/
	height:117px;
	float:left;
	/*margin:40px 10px;*/
	cursor:pointer;
	font-size:1px;
	text-align:center;
	vertical-align:baseline;
}

/* right */
#content a.right 				{ background:#545b72 url(../images/resultsRight.jpg) no-repeat bottom;background-position:10px; clear:right; margin-right: 0px;}
/*#content a.right 				{ background-position: 0 -30px; clear:right; margin-right: 0px;}
#content a.right:hover 		{ background-position:-30px -30px; }
#content a.right:active 	{ background-position:-60px -30px; } */


/* left */
#content a.left				{ background:#545b72 url(../images/resultsLeft.jpg) no-repeat bottom;background-position:10px;margin-left: 0px; } 
/*#content a.left				{ margin-left: 0px; } 
#content a.left:hover  		{ background-position:-30px 0; }
#content a.left:active  	{ background-position:-60px 0; }*/

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

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

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


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

