.slider{
	/*width : 100%; This styles are setted with 'style' attribute of html tag
	height : 300px;*/
	overflow : hidden;
	
	position : relative;
}
/* ul */
.slider-slides{
	margin : 0;
	padding : 0;
	
	height : 100%;
	
	position : relative;
	left : 0px;
	
	transition : left 0.2s cubic-bezier(0.5, 0.0, 0.5, 1.0);
}
/* li */
.slider-slide{
	margin : 0;
	padding : 0;
	
	list-style-type : none;
	
	float : left;
	
	width : 100%;
	height : 100%;
}