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

		/*
			Load CSS before JavaScript
		*/
		
		/*
			Slides container
			Important:
			Set the width of your slides container
			Set to display none, prevents content flash
		*/
		.slides_container {
			width:550px;
			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 {
			width:520px;
			height:370px;
			display:block;
			font-family:Arial, Helvetica, sans-serif;
		}
		
		.pagination {display:none; float:right; margin-top:-300px; text-indent:-10px;}
		
		.next {color:#FFFFFF; font-family:Arial, Helvetica, sans-serif; font-size:14px; letter-spacing: 0.1em; margin-left:400px; text-decoration:none;}
		.prev {color:#FFFFFF; font-family:Arial, Helvetica, sans-serif; font-size:14px; letter-spacing: 0.1em; text-decoration:none;}
		
		
