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

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

#slides{
	position:relative;
	width:480px;
}

.slides_container {
	width:452px;
	overflow:hidden;
	position:relative;
	display:none;
}

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

.slides_container div.slide {
	width:452px;
	height:480px;
	display:block;
}


/*
	Next/prev buttons
*/

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

#slides .next {
	left:585px;
}

/*
	Pagination
*/

.pagination {
	position:absolute;
	top:0;
	right:10px;
}

.pagination li {
	display:block;
	height:12px;
	width:12px;
	margin:0 0 15px 0;
	list-style:none;
}

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

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

/*
	Caption
*/

.caption {
	z-index:500;
	left:0;
	height:30px;
	padding:5px 20px 0 00px;
	width:450px;
	font-size:1.3em;
	line-height:1.33;
	color:#fff;
	text-shadow:none;
}