/* 
	for slides
	rev. by amazon pixels
*/

/*
	Page style
*/

#slide_player {margin:  20px auto;
	}
	
#slide_player {
	width:720px;
	height:480px;
	position:relative;
	border: 1px hidden green;
}

/* this is the image element of the player background */
/* we force the frame to go to center instead of exact top and left */
#frame {
	position:absolute;
	z-index:0;
	width:717px;
	height:447px;
	/*top:-3px;
	left:-80px;*/
	border: 1px hidden green;
	margin: 0 auto;
}

/*
	Slideshow
*/

#slides {
	position:absolute;
	top:15px;
	/*left:4px;*/
	z-index:100;
	border: 1px hidden green;
	left: 85px;
}

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

.slides_container {
	width:548px;
	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:548px;
	height:376px;
	display:block;
	margin: 0 auto;
}


/*
	Next/prev buttons
*/

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

#slides .next {
	left:563px;
}

/*
	Pagination
*/

.pagination {
	margin: 10px auto 0 auto;
	width: 200px; /* might need adjustments */
	height: 30px;
	border:0px solid #000;
}


.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('../slides/img/pagination.png');
	background-position: 0 0;
	float:left;
	overflow: hidden;
}

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

/*
	Caption
*/

.caption {
	z-index:500;
	position:absolute;
	left:0;
	bottom:-30px;
	height: 30px;
	padding:5px 10px 0 20px;
	background:#000;
	background:rgba(0,0,0,.5);
	width:540px;
	font-size:1em;
	line-height:1.25;
	color:#fff;
	border-top:1px solid #000;
	text-shadow:none;
}

/* make sure the p has no margin and padding -- control all text and format in .caption div */
.caption p {margin: 0; padding: 0;}