/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
	To do : to add icarouselModule class for scoping issue
*/

.icarouselModule div.scrollable {
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	
	width: 882px;
	height:130px;	 
	
	/* custom decorations */
	/*padding:10px 0;	*/
	padding:10px 0 0 0;
	border:0px outset #ccc;
	background-color:none;	
}

/* 
	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.
*/



.icarouselModule div.scrollable div.items{
	/* this can not be too large */
	width:20000em;	
	position:absolute;
	clear:both;
	left: 0;
	
	/* decoration */
	margin-left:0px;
}

/* single scrollable item */

/* 
	Note :changed the original code from '  div.scrollable div.items div ' to div.scrollable div.items>div . 
	Use immediate child instead so it will not override any div of any module that lives in side this module 
*/

.icarouselModule div.scrollable div.items>div {
	float:left;
	
	/* custom decoration */
	width:294px;
	padding:5px 0px;
	border:0px outset #ccc;
	margin-right: 0px;
	-moz-border-radius:0px;
}

/* active item */
.icarouselModule div.scrollable div.items div.active {
	border:1px inset #ccc;		
	background-color:#fff;
}

.icarouselModule{
	overflow:hidden;
	width:990px;
	position:relative;
	margin:auto;
}