/* 
			Scrollable
		*/ 

		div.scrollable { 
			/* required settings */
			position: absolute;
			bottom: 160px;
			left: 35px;
			overflow:hidden;
			width: 302px;
			height: 100px;
			margin: 0px 0px 0px 0px;
			padding: 0px 0px 0px 0px;
		} 

		div.scrollable div.items { 
			/* this cannot be too large */ 
			width:20000em; 
			position:absolute; 
		} 

	
		/* Carousel */
		div.scrollable div.items div.thumbnail {
			float:left;
			width: 95px;
			margin: 0px 6px 0px 0px;
			padding: 0px;
			cursor: pointer;

		}

		div.scrollable div.items div.thumbnail img {
			float:left;
			width: 95px;
			height: 85px;
			border: 0px;
			margin: 0px 0px 0px 0px;
			padding: 0px 0px 0px 0px;
		}
		
		div.scrollable div.items div.thumbnail a {
			float: left;
			display: block;
			width: 95px;
			text-decoration: none;
			border: 0px solid #f2f2f2;
			cursor: pointer;
			background: none;
			padding: 1px;
			margin: 0px 0px 0px 0px;
		}
		div.scrollable div.items div.thumbnail a:hover {
			width: 95px;
			text-decoration: none;
			border: 0px;
			cursor: pointer;
			padding:0;
			border: 1px solid #212121;
		}
		
		/*
		div.scrollable div.items div.thumbnail.active a {
			padding:0;
			border: 1px solid #212121;
		}
		*/



/* BUTTONS */

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

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:18px;
	height:18px;
	position: absolute;
	bottom:200px;
	margin:0px 0px;
	cursor:pointer;
	font-size:1px;
	z-index: 999;
}


/* right */
.right {
	width:7px;
	height:9px;
	right: 10px;
	background:url(../images/arrow.png) no-repeat 0px 0px;
}
a.right 				{ background-position: 0px 0px;}
a.right:hover 	{ background-position: 0px 0px; }
a.right:active 	{ background-position: 0px 0px; }


/* left */
.left {
	width:7px;
	height:9px;
	left: 20px;
	background:url(../images/arrow_left.png) no-repeat 0px 0px;
}
a.left					{ background-position: 0px 0px;} 
a.left:hover  		{ background-position: 0px 0px; }
a.left:active 	 	{ background-position: 0px 0px; }



/* disabled navigational button */
a.disabled {
	filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
} 	



 
 


