/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/
#slides {
	position:relative;
}
.slides_container {
	width: 373px;
	height: 250px;
	padding-top:30px;
	margin-left:30px;
	margin-bottom:100px;
	overflow: hidden;
	position: relative;
	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 {
	width: 320px;
	height: 240px;
	display: block;
	text-decoration: none;
	color:#505050;
}

.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: 100px;
    height: 40px;
    z-index:101;
    bottom:-80px;
    left:25px;
    /*border: 1px solid #000;  uncomment to see dots border */
}
.pagination li {
	float: left;
	margin: 0 3px; /* spacing between dots */
	list-style: none;    
}
.pagination li a {
	display: block;
	width: 15px;
	height: 12px;
	background-image:url(../_images/pagination.png);
	background-position:0 0;
	overflow:hidden;
    outline: none;
    text-indent:-9999px;
}

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