/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/
#slides {
	position: relative;
	padding-top: 20px;
	padding-right: 80px;
	padding-bottom: 0px;
	padding-left: 80px;
}
.slides_container {
	width: 540px;
	height: 340px;
	overflow: hidden;
	position: relative;
	/* [disabled]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 a {
	display: block;
	text-decoration: none;
	color: #000;
}

.slides_container a img{
	display: block;
}
/*
	Next/prev buttons
*/
/*#slides .next,#slides .prev {
	width: 29px;
	height: 31px;
	display:block;
	z-index:101;
	cursor: pointer;
	outline: none;
}*/
.tablet-pic {
	position:absolute;
	right:0;
	bottom:-75px;
}
/*
	Pagination
*/
.pagination {
    position:absolute;
	margin:0;
	width: 260px;
    height: 20px;
    z-index:101;
    bottom:20px;
    left: 40px;
    /*border: 1px solid #000;  uncomment to see dots border */
}
.pagination li {
	float: left;
	margin: 1px 12px; /* spacing between dots */
	list-style: none;    
}
.pagination li a {
	display: block;
	width: 10px;
	height: 10px;
	background-image:url(../_images/pagination.png);
	overflow:hidden;
    outline: none;
    text-indent:-9999px;
}

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