/*
	Slideshow
*/

#slides {
    position:relative;
    /*position:absolute;
	top:206px;
	left:578px;
	z-index:100;
	padding: 1px;
	border-style: solid;
	border-width: 1px;
	border-color: #a5daac;
	width: 390px;
	height: 240px;
	float:right;*/
}

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

.slides_container {
	width:390px;
	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 a {
	width:570px;
	height:240px;
	display:block;
}

.slides_container a img {
	display:block;
}

/*
	Next/prev buttons
*/

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

#slides .next {
	left:365px;
}


