/*
	Slideshow
*/

#slides {
	position:absolute;
	top:1.667em;
	left:0em;
	z-index:100;
}

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

.slides_container {
	width:26.333em;
	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:26.333em;
	height:11.833em;
	display:block;
	overflow: hidden;
}

.slide img {
	width: 26.333em;
/*	height: 11.833em; */
}

/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	top:8.917em;
	left:-3.250em;
	width:2em;
	height:3.583em;
	display:block;
	z-index:101;
}

#slides .next {
	left:26.333em;
}

/*
	Pagination
*/

.pagination {
	margin: 0;
	margin-top: 0.167em;
	width: 25.667em;
	background-color: #d9f0f0;					/* lightTurquoiseBG */
	height: 1.333em;
	padding-top: 0.500em;
	padding-right: 0.667em;
	text-align: right;
}

.pagination li {
	float:right;
	margin:0 0.083em;
	list-style:none;
}

.pagination li a {
	display:block;
	width:1.750em;
	height:0;
	padding-top:0.833em;
	background-image:url(../images/pagination1.png);
	background-size: cover;
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -0.833em;
}

/*
	Caption
*/

#homepageFeatures .caption {
	z-index:500;
	position:absolute;
	bottom:-6.250em;
	left:-0.083em;
	height:5em;
	padding:0.583em 0.833em 0.2em 0.833em;
	background-color: #d9f0f0;					/* lightTurquoiseBG */
    filter: alpha(opacity=95); /* here you can set the opacity of box with text */
    -moz-opacity: 0.95; /* here you can set the opacity of box with text */
    -khtml-opacity: 0.95; /* here you can set the opacity of box with text */
    opacity: 0.95; /* here you can set the opacity of box with text */
	width:26.333em;
	font-size:1em;
	line-height:1em;
	color:#000;
	text-shadow:none;
}

#homepageFeatures .caption h2 {
	font-size: 1.333em;
	line-height: 1em;
	color: #086999;								/* darkBlue */
	margin-bottom: 0.167em;
	text-transform: none;
}

#homepageFeatures .caption a {
	color: #086999;								/* darkBlue */
	text-decoration: underline;
}

#homepageFeatures .caption a:hover {
	text-decoration: none;
}

#homepageFeatures .item-list .pager {
	display: none;
}