/* 
	Resets defualt browser settings
	reset.css

*/
:focus { outline:0; }
a:active { outline:none; }
ol,ul { list-style:none; }
table { border-collapse:separate; border-spacing:0; }
caption,th,td { text-align:left; font-weight:normal; }
blockquote:before,blockquote:after,q:before,q:after { content:""; }
blockquote,q { quotes:"" ""; }

#example {
	width:940px;
	height:280px;
	position:relative;
}
@media all and (max-width: 419px) {
  #example {
	width: 284px;
	height: 83px;
  }
}
@media all and (min-width: 420px) and (max-width: 950px) {
  #example {
	width: 396px;
	height: 114px;
  }
}
/*
	Slideshow
*/

#slides {
	position:absolute;
	z-index:100;
	width: 940px;
}
@media all and (max-width: 419px) {
  #slides {
	width: 284px;
  }
}
@media all and (min-width: 420px) and (max-width: 950px) {
  #slides {
	width: 396px;
  }
}
/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	border-radius: 10px;	
	width:940px;
	height:270px;
	overflow:hidden;
	position:relative;
	display:none;
}
@media all and (max-width: 419px) {
  .slides_container {
	width: 284px;
	height: 83px;
  }
}
@media all and (min-width: 420px) and (max-width: 950px) {
  .slides_container {
	width: 396px;
	height: 114px;
  }
}
/*
	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.slide {
	width:940px;
	height:300px;
	display:block;
}
@media all and (max-width: 419px) {
  .slides_container div.slide {
	width: 284px;
	height: 83px;
  }
}
@media all and (min-width: 420px) and (max-width: 950px) {
  .slides_container div.slide {
	width: 396px;
	height: 114px;
  }
}

/*
	Next/prev buttons
*/

#slides .prev {
	position:absolute;
	top:113px;
	left:0px;
	width:27px;
	height:46px;
	display:block;
	z-index:101;
	background-image: url(../imgs/slider/arrow-prev.png);
	background-position: 0px 0px;
}
@media all and (max-width: 419px) {
  #slides .prev {
	top: 19px;
  }
}
@media all and (min-width: 420px) and (max-width: 950px) {
  #slides .prev {
	top: 34px;
  }
}
#slides .next {
	position:absolute;
	top:113px;
	left:913px;
	width:27px;
	height:46px;
	display:block;
	z-index:101;
	background-image: url(../imgs/slider/arrow-next.png);
	background-position: 0px 0px;
}
@media all and (max-width: 419px) {
  #slides .next {
	top: 19px;
	left: 257px;
	float:none;
  }
}
@media all and (min-width: 420px) and (max-width: 950px) {
  #slides .next {
	top: 34px;
	left: 369px;
	float:none;
  }
}
#slides .prev:hover {
	background-position: 0px -46px;
}
#slides .next:hover{
	background-position: 0px -46px;
}


/*
	Pagination
*/

.pagination {
	margin:0px auto 0;
	width:50px;

}

.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(../imgs/slider/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

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

/*
	Caption
*/

.caption {
	z-index:500;
	position:absolute;
	left:5px;
	height:40px;
	width:940px;
	bottom: 25px;
}
