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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 765px;
	height:190px;

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

.items div {
	float:left;
	width:775px;
	padding-right:20px;
	padding-top:20px;
}

/* single scrollable item */
/*.scrollable img {
	float:left;
	margin-right:5px;
	padding:25px 10px;
	width:100px;
	height:75px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}*/

.projectThumb{
	padding-top:9px;
	float:left;
	width:120px;
	height:148px;
	text-align:center;
	line-height:12px;
	font-weight:bold;
	font-size:11px;
	color:#000;
}

.projectThumb img{
	margin-top:-4px;
	margin-bottom:-4px;
	width:100px;
	height:75px;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	background-color:none !important;
}

.projectThumb.active{
	background-color:#1a8b9d;
	color:#FFF;
}

.projectThumb:hover{
	background:none;
	color:#FFF;
	
}

.projectThumb img:hover, .projectThumb.active img{
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}

.projectThumb.active:hover{
	background-color:#1a8b9d;
	color:#FFF;
}

.projectThumb p{
	margin-right:2px;
	margin-left:2px;
}