
/*
	Slideshow
*/

#slides
{
	
}

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

.slides_container {
	width:970px;
	overflow:hidden;
	position:relative;
	display:none;
	margin: 0;
	/*border: 1px solid red;*/
}

/*
	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:970px;
	height:450px;
	display:block;
}



/*
	Next/prev buttons
*/

.slides-arrows
{
	position: relative;
	width: 970px;
	/*border: 1px solid green;*/
}


#slides a.next,
#slides a.prev 
{
	display: block;
	position: absolute;
	top: -250px;
	left: 0px;
	width: 38px;
	height: 52px;
	display: block;
	z-index: 101;
	/*border: 1px red solid;*/
}


#slides a.prev
{
	left: 16px;
	background: url(/shared/img/buttons_slider_prev-next.png) no-repeat 0 0;
}


#slides a.next
{
	left: 912px;
	background: url(/shared/img/buttons_slider_prev-next.png) no-repeat -48px 0;
}


#slides a.prev:hover
{
	background-position: 0 -61px;
}


#slides a.next:hover
{
	background-position: -48px -61px;
}