/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/
#slides {
	position:relative;
}
.slides_container {
	width: 640px;
	height: 120px;
	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 {
	width: 640px;
	height: 120px;
	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: 20px;
    z-index:101;
    bottom:-67px;
    left: 270px;
    /*border: 1px solid #000;  uncomment to see dots border */
}
.pagination li {
	float: left;
	margin: 1px 6px; /* spacing between dots */
	list-style: none;    
}
.pagination li a {
	display: block;
	width: 8px;
	height: 8px;
	background-image:url(../_images/pagination2.png);
	background-position: -1px 0;
	overflow:hidden;
    outline: none;
    text-indent:-9999px;
}

.pagination li.current a {
	background-position: -1px -10px;
}
