/*
	Slideshow
*/

#slides {
	position:relative;
    margin: 0px 0px 0px -10px;
    box-shadow:0 0 5px #000;
}

#slides img {
	border:none;}
/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

#slides .slides_container {
	background:#5fc5ff;
    width:1020px !important;
    height:290px !important;
}

/*
	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:1020px;
	height:290px;
	display:block;
}


/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	top:134px;
	left:10px;
	width:50px;
	height:50px;
	display:block;
	z-index:101;
	overflow:hidden;
	background:url(../img/arrow-scroll.png) 0 0 no-repeat;
}

#slides .next, #slides .next:hover,#slides .prev, #slides .prev:hover {
	text-decoration:none;}

#slides .next {
	left:960px;
	background:url(../img/arrow-scroll.png) -50px 0 no-repeat;
}

#slides .prev:hover {
	background:url(../img/arrow-scroll.png) 0 -50px no-repeat;
}

#slides .next:hover {
	background:url(../img/arrow-scroll.png) -50px -50px no-repeat;
}

/*
	Pagination
*/

.pagination {
	position:absolute;
    bottom:30px;
    z-index:1000;
    left:505px;
}

.pagination li {
	float:left;
	margin:0 5px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:7px !important;
    height:7px !important;
	background:none;
    color:#5fc5ff;
    border:2px #fff solid;
    border-radius:100%;
	overflow:hidden;
}

.pagination li.current {
	 background:#fff;
    border-radius:100%;
}

.pagination li.current a{
	 color:#fff !important;
}

/*
	Caption
*/

#slides div.slide .caption {
	width:400px;
    position:absolute;
    left:505px;
    top:15px;
    color:#fff;
    font-size:35px;
    z-index:1000;
}

#slides div.slide .caption a {
    color:#fff;
    font-size:35px;
	text-decoration:underline;
}

#slides div.slide .caption a:hover {
	text-decoration:none;
}
