/* Slideshow */
#slider {
    width: 578px; /* important to be same as image width */
    height: 370px; /* important to be same as image height */
    position: relative; /* important */
	overflow: hidden; /* important */
}

#slides {
	position:absolute;
	z-index:1;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:578px;
	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:578px;
	height:336px;
	display:block;
}


/* Pagination */
.pagination {
	margin:10px auto 0;
	width:150px;
}

.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/carousel/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;
	height:314px;
	background:#122152;
	filter: alpha(opacity=90);
    -moz-opacity: 0.9;
	-khtml-opacity: 0.9;
    opacity: 0.9;
	width:138px;
	font-size:	12px;
	line-height: 18px;
	font-family: Arial, Helvetica, sans-serif;
    padding: 12px 13px;
	color:#fff;
	text-shadow:none;
}


