/* 
	Resets defualt browser settings
	reset.css
*/
/*
	Slideshow style
*/

#slides {
	z-index:100;
	position:absolute;
	bottom:-34px;
}

/*
	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:936px;
	height:475px;
	overflow:hidden !important;
	
	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 {
	width:984px;
	height:auto !important;
	display:block;
}

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

#slides .next {
	left:585px;
}

/*
	Pagination
*/

/*.pagination {
	position:absolute;
	left:5px;
	top:490px;
	z-index:999;
}

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

.pagination li a {
	display:block;
	padding-top:14px;
	background:url(../images/slide-icon.gif) no-repeat left top;
	height:12px;
	width:12px;
	float:left;
	overflow:hidden;
}
.pagination li a:hover{
background:url(../images/slide-icon.gif) no-repeat right top;
}
*/

.pagination {
	position:absolute;
	left:0px;
	top:362px;
	z-index:999;
}

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

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

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

