@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 .slides_container {
			width: 355px;
			 height: 150px;
		}

		/*
			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 .slides_container div {
			width: 355px; height: 150px;
			display:block;
			text-align:justify;
		}
		
 #slides .prev {
    display: block;
    height: 43px;
    left: 75px;
    position: absolute;
    top: 100px;
    width: 24px;
    z-index: 101;
}



#slides .next{
    display: block;
    height: 43px;
    left: 545px;
    position: absolute;
    top: 100px;
    width: 24px;
    z-index: 101;}
		
