
#productscreenshot {
	width:600px;
	margin:0 auto;
	position:relative;
	z-index:0;
}

#example {
	width:600px;
	height:680px;
	position:relative;
}

/*
	Slideshow
*/

#slides {
	position:absolute;
	z-index:100;
	text-align: center;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:600px;
	height:600px;
	overflow:hidden;
	position:relative;
	display:none;
	border: 1px solid #BBB;
	padding: 10px;
	z-index:1000;
}

/*
	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: 600px;
	height: 600px;
	display: block;
}


/*
	Pagination
*/

.pagination {
	margin:15px auto;
	display: inline-block;
	padding-left: 0px;
}

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

.pagination li a {
	display:block;
	width:23px;
	height:0;
	padding-top:23px;
	background-image:url(/slideshow/img/pagination.png);
	background-position:0 -23px;
	float:left;
	overflow:hidden;
}

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

/*
	Anchors
*/

a:link,a:visited {
	color:#599100;
	text-decoration:none;
}

a:hover,a:active {
	color:#599100;
	text-decoration:underline;
}