	/*
		Load CSS before JavaScript
	*/
	
	/*
		Slides container
		Important:
		Set the width of your slides container
		Set to display none, prevents content flash
	*/
	.slides_container {
		width:500px;
		display:none;
		margin-top: 18px;
	}

	/*
		Each slide
		Important:
		Set the width of your slides
		If height not specified height will be set by the slide content
		Set to display block
	*/
	.slides_container div {
		width:500px;
		height:100px;
		display:block;
	}
	
	.slides_container p {
		margin: 0px;
	}
	
	/*
		Optional:
		Reset list default style
	*/
	.pagination {
		display:none;/* uncomment to show index*/
		list-style:none;
		margin:0;
		padding:0;
	}

	/*
		Optional:
		Show the current slide in the pagination
	*/
	.pagination .current a {
		color:red;
	}

	.slide{
		width:300px;
	
	}