/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
/* root element for scrollable */ 
div.c_scrollable {   
     
    /* required settings */ 
    position:relative; 
    overflow:hidden;     
 
    /* vertical scrollers have typically larger height than width */     
    height:200px;     
    width:100%;     
}

.c_scrollable .items {
	margin:0;
	padding:0;
}
div.c_heading {
	font-family: Verdana;
	font-size:13px;
	color:#02507c;
	font-weight:bold;
	height:24px;
	padding-top:5px;
	padding-left:5px;
}

/* 
	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.
*/
/* root element for scrollable items */ 
div.c_scrollable div.items {     
    position:absolute; 
     
    /* this time we have very large space for height */     
    height:20000em;
	cursor:pointer;
}

/* single scrollable item */
div.c_scrollable div.items div {
	float:left;
	
	/* custom decoration */
	color: #686868;
	text-align:left;
	margin-left:10px;
	width:130px;
	padding:8px 0px 5px 0px;
	font-weight:bold;
	font-size:12px;
	font-family: 'arial';
	/*border-bottom:1px solid #ccc;*/
	background:url(../img/channel_hdivider.png) repeat-x top left;

	/*additions*/
	height:auto;/*17px;*/
}

/* active item */
div.c_scrollable div.items div.c_active {
	/*border:1px solid #ccc;		
	background-color:#fff;*/
	padding:8px 0px 5px 0px;
	/*padding-left:8px;*/
	font-size:13px;
	color:#02507C;
	/*background:url(../img/citem_active.png) no-repeat top;*/
}
