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


/*
	Slideshow style
*/

#slides {
	position:absolute;
	top:-30px;
	left:100px;
	z-index:100;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	If height not specified height will be set by the slide content
	Set to display none, prevents content flash
*/

.slides_container {
	width:570px;
	height:350px;
	overflow:hidden;
	position:center;
	display:none;
}

/*
	Each slide
	Important:
	Set the width of your slides
	Offeset for the 20px of padding
	If height not specified height will be set by the slide content
	Set to display block
*/

#slides .slide {
	padding:20px;
	width:530px;
	height:250px;
	display:block;
	position:center;
}

/*
	Next/prev buttons
*/
#slides .next,#slides .prev {
	position:absolute;
	top:150px;
	left:-39px;
	width:24px;
	height:43px;
	display:block;
	z-index:101;
}

#slides .next {
	left:585px;
}

/*
	Pagination
*/

.pagination {
	margin:0px auto 0;
	width:150px;
}

.pagination li {
	float:left;
<!--	margin:5 0px;	-->
	margin:0 0px;
/*	list-style:square;*/
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
<!--	padding-top:12px;	-->
	margin:0px
	background-image:url(../images/pagination.png);
	background-position:0 5;
	float:left;
	overflow:hidden;
	list-style:square;
}

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



/*
	Type and anchors
*/

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

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

h1 {
	font-size:2em;
}

p {
	font-size:1.3em;
}

#slides .link {
	display:block;
	margin-top:10px;
	font-weight:800;
}