
/* this makes it possible to add next button beside scrollable */
.scrollinglogos {
	border: 1px solid #c7c8ca;
	width: 643px;
}

div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 600px;
	height: 32px;
	margin: 0;
	padding: 3px 0 3px 0;
	float:left!important;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	background-color: #ffffff;
	border: 0px solid #ffffff;
}

/* single item */
#thumbs div {
	float:left;
	width: 600px;
	height:32px;
	margin: 0 0 0 0px;
	padding: 0;
	background-color: #ffffff;
}
#thumbs img {
	display: block;
	float: left;
}
/* style when mouse is over the item */
#thumbs div.hover {
	background-color:#ffffff;	
}

/* style when element is active (clicked) */
#thumbs div.active {
	background-color:#ffffff;
	cursor:default;
}

/* prev, next, prevPage and nextPage buttons */
a.prev {
	display:block;
	width:13px;
	height:14px;
	background:url(http://cdn-images.spaceclaim.com/newhp/arrow_back.gif) no-repeat;
	float:left;
	margin: 11px 0 0 7px;
	cursor:pointer;
}
a.next {
	display:block;
	width:13px;
	height:14px;
	background:url(http://cdn-images.spaceclaim.com/newhp/arrow_next.gif) no-repeat;
	float:left;
	margin: 11px 0 0 0;
	cursor:pointer;
	
}
/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	/* background-position:0px -18px; */
}

/* disabled navigational button */
a.disabled {
	opacity:.60;
	filter: alpha(opacity=60);
}

/* next button uses another background image */
a.next, a.nextPage {
	clear:right;	
}


