/* CSS Document */

#slider {

	/* You MUST specify the width and height */
	width:490px;
	height:160px;
	position:relative;	
	overflow:hidden;
}

#mask-gallery {
	
	overflow:hidden;	
}

#gallery {
	
	/* Clear the list style */
	list-style:none;
	margin:0;
	padding:0;
	
	z-index:0;
	
	/* width = total items multiply with #mask gallery width */
	width:4000px;
	overflow:hidden;
}

	#gallery li {

		/* float left, so that the items are arrangged horizontally */
		float:left;
	}


.clear {
	clear:both;	
}