/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 200px;	
	height:510px;	
	
	/* custom decorations */
	padding:5px 0;	
	/*border:1px outset #ccc;*/
	background-color:#a7a7a7;
    margin-left:10px;	

	
}

/* 
	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.scrollableitems {	
	/* this cannot be too large */
	height:20000em;	
	position:absolute;
	clear:both;		
	
	/* decoration */
	margin-left:5px;
}

/* single scrollable item */
div.scrollable div.scrollableitems div {
	float:left;
	
	/* custom decoration */
	text-align:center;
	width:190px;
	padding:25px 0px;
	font-size:30px;
	font-family: 'bitstream vera sans';
	border: 1px solid #000;
	background-color: #fff;/*ddd*/
	margin-bottom: 20px;
    background-image:url(../images/scrolling/fon.gif); 
	background-repeat: repeat-x;
	cursor:pointer;

}

/* active item */
div.scrollable div.scrollableitems div.active {
	border:1px solid #000;		
	background-color:#fff;
}

