		/*
			Load CSS before JavaScript
		*/
		
		/*
			Slides container
			Important:
			Set the width of your slides container
			Set to display none, prevents content flash
		*/
		.slides_container {
			width:950px;
			display:none;
			
		}

		/*
			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.slide {
			width:950px;
			height:530px;
			display:block;
		}
		
		/*
			Set the size of your carousel items
		*/
		.item {
			float:left;
			width:290px;
			height:155px;
			margin:0;
			padding: 10px 10px;
			
		}
		
		/*
			Optional:
			Reset list default style
		*/
		
		.pagination {
			float:right;
			margin-right:50px;
		}
		
		.pagination li{
			list-style:none;
			display:inline;
			font-size:14px;
			padding-right:10px;
		}
		.pagination li a{
			text-decoration:none;
			color:#fff;
			background-color:#333;
			padding: 5px 5px ;
		}

		/*
			Optional:
			Show the current slide in the pagination
		*/
		.pagination .current a {
			color:white;
			background-color:#c19b1d;
			padding: 5px 5px ;
		}
	</style>