#header #example {
	width:960px;
	height:426px;
	position:relative;
	margin:auto;
}

/*
	Slideshow style
*/

#header #slides {
	width:960px;
	height:426px;
	position:absolute;
	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
*/

#header .slides_container {
	width:960px;
	height:426px;
	overflow:hidden;
	position:relative;
	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
*/

#header #slides .slide {
	padding:20px;
	width:840px;
	height:426px;
	display:block;
	margin:auto;
	margin-left:35px;
}

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

#header #slides .next {
	left:915px;
}

/*
	Pagination
*/

#header .pagination {
	margin:26px auto 0;
	width:100px;
	display:none;
}

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

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

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

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