

#example {
	width:100%;
	height:250px;
	position:relative;
}

/*
	Slideshow style
*/

#slides {
	position:absolute;
	top:15px;
	left:4px;
	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: 660px;
	height: 200px;
	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
*/
.img_slide {
	display:block;
	float:left;
	margin-right: 10px;
	}
#slides .slide {
	padding:20px;
	width: 630px;
	height:250px;
	display:block;
}

/*
	Next/prev buttons
*/
#slides .next,#slides .prev {
	position:absolute;
	top: 80px;
	left: -20px;
	width: 30px;
	height:30px;
	display:block;
	z-index:9999;
}

#slides .next {
	left:660px;
}

/*
	Pagination
*/

.pagination {
	margin:26px auto 0;
	width:100px;
	visibility:hidden;
}

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

.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;
}

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


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

#slides p {
	font-size: 15px !important;
	color:#000 !important;
	}

#slides h1 {
	font-size: 25px !important;
	color:#000 !important;
	font-weight:normal;
	}	