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

/* home slider */
/*
			Slides container
			Important:
			Set the width of your slides container
			Set to display none, prevents content flash
		*/
		#slides .slides_container {
			width:960px;
			
			height:300px;
			display:none;
			
	-moz-box-shadow:     1px 1px 5px 1px #efefef;
 	 -webkit-box-shadow:   1px  1px 5px 1px #efefef;
  	box-shadow:           1px  1px 5px 1px #efefef;
			
			
		}

		/*
			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.sld {
			width:960px;
			height:300px;
			display:block;
		}
		
		/*
			Slides container
			Important:
			Set the width of your slides container
			Set to display none, prevents content flash
		*/
		#slides_two .slides_container {
			width:340px;
			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_two .slides_container div.sld {
			width:340px;
			height:340px;
			display:block;
		}
		
		/*
			Slides container
			Important:
			Set the width of your slides container
			Set to display none, prevents content flash
		*/
		#slides_three .slides_container {
			width:200px;
			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_three .slides_container div.sld {
			width:200px;
			height:100px;
			display:block;
		}
		
		/* 
			Example only
		*/
		.pagination .current a {
			color:red;
		}
		hr {
			background:#efefef;
		}
    
/*
	Next/prev buttons
*/
#slides{position:relative;}
#slides .next,#slides .prev {
	position:absolute;
	top:40%;
	left:-18px;
	width:24px;
	height:43px;
	display:block;
	z-index:101;
}

#slides .next {
	left:953px;;
}

/*
	Pagination
*/

#slides .pagination1 {
	margin:26px auto 0;
	width:100px;
	position:absolute; top:-15px; right:490px;
	z-index:90;
	
}

.pagination1 li {
	float:left;
	margin:0 1px;
	list-style:none;
}

.pagination1 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;
}

.pagination1 li.current a {
	background-position:0 -12px;
}

#slides img{
	 
	-moz-box-shadow: none;
 	 -webkit-box-shadow:  none;
  	box-shadow:          none;
	}