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

/*
			Load CSS before JavaScript
		*/
		#slides{position:relative;width:960px;height:180px; }
		
		#slides .prev{ display:none}
		#slides .next{display:none}
		/*
			Slides container
			Important:
			Set the width of your slides container
			Set to display none, prevents content flash
		*/
		.slides_container {
			width:960px;
			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:960px;
			height:180px;
			display:block;			
		}
		
		/*
			Optional:
			Reset list default style
		*/
		ul.pagination { position:absolute; bottom:10px; right:10px; z-index:99;
			list-style:none; 
			margin:0;
			padding:0;
		}
        ul.pagination li{ float:left; font-size:12px; }
		ul.pagination li a{ text-decoration:none; display:block; width:15px; height:15p; line-height:15px;  text-align:center; margin-right:3px; border:1px solid #e4e4e4; color:#4d99e0 ; background-color:#FFF }
		ul.pagination li a:hover{ background-color:#dddddd }
		/*
			Optional:
			Show the current slide in the pagination
		*/
		ul.pagination .current a {
			background-color:#ccc
		}
		
		