body { 	

}
.copy_blue {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #009999;
}
.copy_blue_sm {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #009999;
}
.copy_bold {
	font-size: 16px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}


/*

Sliders:

Load CSS before JavaScript
*/
		
		#example {
			width:597px;
			height:217px;
			position:relative;
		}

		/*
			Slides container
			Important:
			Set the width of your slides container
			Set to display none, prevents content flash
		*/
		.slides_container {
			width:597px;
			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:597px;
			height:217px;
			display:block;
			
			z-index:0;
		}
		
		/*
			Optional:
			Reset list default style
		
		.pagination {
			list-style:none;
			margin:0;
			padding:0;
		}
		*/
		
		/*
			Pagination
		*/
		
		.pagination {
			/*margin-right: 400px;
			margin-bottom: 100px;*/
			width:100px;
			
			position:absolute;
			bottom: 10px;
			right: 10px;
			z-index:500;	
		}
		
		.pagination li {
			float:left;
			margin:0 1px;
			list-style:none;
		}
		
		.pagination li a {
			display:block;
			width:12px;
			height:0;
			padding-top:12px;
			background-image:url(images/pagination.png);
			background-position:0 0;
			float:left;
			overflow:hidden;
		}
		
		.pagination li.current a {
			background-position:0 -12px;
		}		

		/*
			Optional:
			Show the current slide in the pagination
		*/
		.pagination .current a {
			color:red;
		}
		
		
/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	top:107px;
	left:10px;
	width:24px;
	height:43px;
	display:block;
	z-index:101;
}

#slides .next {
	left: 620px;
}		
		
		
		