@charset "utf-8";
/* CSS Document */

/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 410px;	 
	height:280px;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	border:1px solid #222;
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:118px;	
}

/* single item */
#thumbs div {
	vertical-align:top;
	float:left;
	width:135px;
	height:280px;
	background:#333 url(/jquery/scrollable/h150.png) repeat-x 0 130px;
	color:#fff;
	border-left:1px solid #333;
	cursor:pointer;
	text-align:right;
}

/* style when mouse is over the item */
#thumbs div.hover {
	background-color:#444;	
}

/* style when element is active (clicked) */
#thumbs div.active {
	background-color:#003366;
	cursor:default;
}

#thumbs table, #thumbs span {
	margin:2px;
	float:left;		
	font-size:12px;
	color:#fff;	
}

#thumbs a:active, a:link, a:visited {
	text-decoration:none;
	font-family: "Arabic Transparent";
	font-size: 12px;
	color:#FFFFFF;
}

#thumbs a:hover {
	text-decoration:none;
	font-family: "Arabic Transparent";
	font-size: 12px;
	color:#00CCFF;
}