﻿/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/
#slides {
    clear: both;	
	width: 700px;
    padding-bottom: 30px;
}
.slides_container {
	width: 700px;
	height: 228px;
	overflow: hidden;
	position: relative;
	/* [disabled]display: none; */
	/*z-index: -1;*/
}

/*
	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: 700px;
	height: 230px;
	display: block;
	text-decoration: none;
	color: #58595B;
	/* [disabled]padding: 5px; 
}*/

.slides_container a img{
	display: block;
}

/*
	Pagination
*/

.pagination {
	margin-left: 300px;
    height: 8px;
    z-index: 101;
    margin-top: 20px;
	text-align: center;
}

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

.pagination li a {
	display: block;
	width: 8px;
	height: 5px;
	padding-top: 3px;
	margin-right: 10px;
	background-image:url(../_images/pagination.png);
	background-position: 0px 0px;
	overflow:hidden;
    outline: none;
}

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