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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 957px;
	height:122px;
	padding:0 0 0 0px;
	/* custom decorations */
		
}

/*
	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;
	margin-left:-10px;
}
.imgbox{
	float:left;
	margin:6px 0px 0px 20px;
	background-color:#ffffff;
	padding:0px;
	cursor:pointer;
	width:217px;
	height:102px;
	position:relative;
	border:1px solid #000000;
	}
.imgbox .prjt-title{
	font-family:"Trebuchet MS";
	font-weight:bold;
	text-transform:uppercase;
	position:absolute;
	font-size:13px;
	bottom:0px;
	left:0;
	display:block;
	background-image:url(../images/titlebg.png);
	background-repeat:repeat;
	padding:6px 0px 5px 10px;
 	width:209px;
	color:#ffffff;
	}
.imgbox .prjt-title {
	color:#ffffff;
	}
	
	
.imgbox .prjt-title:hover{
	color:#2baaee;
	}
/* single scrollable item */
.scrollable img {
}
/* 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 */
a.browse {
	background:url(../images/leftrightarrow.png)  no-repeat;
	display:block;
	width:12px;
	height:19px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background-position: -23px -21px; clear:right; margin-left: 0px; position:absolute; top:-18px; right:15px;}
a.right:active 	{ background-position:-23px -21px; } 


/* left */
a.left				{ background-position:0px -21px; margin-left: 0px;  position:absolute; top:-18px; right:40px; } 
a.left:active  	{ background-position:0px -21px; }


/* disabled navigational button */
a.left.disabled {
	background-position:0px 0px; 
} 	
a.right.disabled {
	background-position:-23px 0px; 

}
* html a.left.disabled {
	background-position:0 top ; 
} 	
* html a.right.disabled {
	background-position:0 top; 

}

.scroll-box{ position:relative; min-height:1px;}
.scroll{
	position:absolute;
	bottom:20px;
	left:0px;
	height:146px;
	margin:0 3px 0 5px;
	
	background-image:url(../images/scroll-bg.png);
	background-repeat:repeat;
	
	z-index:10000; }
.scroll-box h5{ padding:7px 0 0 10px; color:#ffffff; font-size:13px;}

