

/*
	Slideshow style
*/

#slides {
width: 900px;
	position:absolute;
	padding-left:26px;

}

/*
	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:900px;
	height:248px;
	overflow:hidden;
	position:relative;



}

/*
	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:0px;
	width:900px;
	height:230px;

	
}

#slides p {
	font-family: tahoma;
	font-size: 12px;
	color: #333333;
	padding: 0px 50px 0px 50px;
}
#slides h1 {
	font-family: tahoma;
	font-size: 20px;
	color: #333333;
	padding: 0px 50px 10px 50px;
}

/*
	Next/prev buttons
*/
#slides .next,#slides .prev {
	position:absolute;
	top:107px;
	left:2px;
	width:24px;
	height:43px;
	display:block;
	z-index:0;
}

#slides .next {
	left:922px;
}

/*
	Pagination
*/

.pagination {
	margin:18px auto 0;
	width:100px;
}

.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;
}


