/* GALLERY */

#slides {
	z-index:999999;
	float: right;
	margin-bottom: 1px;
	margin-left: 1px;
}
/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:300px;
	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 {
	position:fixed;
	width:300px;
	height:200px;
	display:block;
}
/*
	Next/prev buttons
*/

#slides .next, #slides .prev {
	position:relative;
	top:-150px;
	left:5px;
	width:48px;
	height:20px;
	display:block;
	z-index:101;
	outline:none;
}
#slides .next {
	top:-100px;
	left:180px;
}
.pagination {
	margin:2px 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(images/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}
.pagination li.current a {
	background-position:0 -12px;
}
/*Caption */

.caption {
	text-align:center;
	z-index:500;
	position:absolute;
	left:0;
	height:20px;
	background-image:url(/images/bkg-caption.png);
	background-repeat:repeat-x;
	width:300px;
	color:#fff;
	border-top:1px solid #000;
	text-shadow:none;
	font-size:12px;
	color:#FFF;
	font-weight:bold;
	line-height:14px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 0;
	padding-left: 5px;
}
.caption h2 {
	line-height:11px;
	margin:0;
	margin-bottom:0px;
	padding:0;
	color: #39C;
	font-size: 14px;
}
