
/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
/*div.scrollable {
	
	position:relative;
	overflow:hidden;	 	
	width: 600px;	
	height:145px;
	
	padding:0px 0;	
	background-color:#e7e7e7;
}*/

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div.scrollable div.items {	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
	margin-left:10px;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;

	/* custom decoration */
	text-align:center;
	width:233px;
	padding:0px 0px;
	font-size:12px;
	font-family: arial,helvetica,sans-serif;
/*	border:1px outset #ccc;
	background-color: #ddd;*/
	margin-right: 5px;	
	margin-top: 5px;
}

.title{
	/*position:relative;*/
	line-height:1.2;
	text-align:center;
	height:30px;
	width:130px;
}

.boximg{
	/*position:relative;*/
	padding:10px 10px;
}
/* active item */
div.scrollable div.items div.active {
	border:1px inset #ccc;		
	background-color:#fff;
}

/* single item */ 
#thumbs div { 
    float:left; 
    width:214px; 
    height:300px; 
    background:#333 url(/img/global/gradient/h150.png) repeat-x 0 146px; 
    color:#fff; 
    border-left:1px solid #333; 
    cursor:pointer; 
} 
 
/* style when mouse is over the item */ 
#thumbs div.hover { 
    background-color:#444;     
} 
 
/* style when element is active (clicked) */ 
#thumbs div.active { 
    background-color:#066; 
    cursor:default; 
}
