@charset "UTF-8";
/* CSS Document */

/*
			Slides container
			Important:
			Set the width of your slides container
			Set to display none, prevents content flash
		*/
		.slides_container {
			width:750px;
			
			margin: 0 auto 20px auto;
		}
 
		/*
			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:700px;
			height:850px;
			
			margin-top:20px;
		}
		
		/*
			Optional:
			Reset list default style
		*/
		.pagination {
			list-style:none;			
			margin:0;
			margin-left: 320px;
			padding:0;
			position:absolute;
		}
 
		/*
			Optional:
			Show the current slide in the pagination
		*/
		.pagination .current a {
			color:white;
			margin-top:40px;
			
			/*margin-left:268px;*/
			
		}
		.pagination li{
			float:left;
			margin-left:20px;
			
			/*margin-top:-19px;*/
			
		}
		.prev{ 
			float:left;
			margin-left: 300px;
			font-size: 18px;
			/*margin-left:260px;*/
	
	
		}
	    .next{
		 	float:left;
			margin-left: 105px;
			
			font-size: 18px;
			/*margin-left:180px;*/
		}
		
		