/*
	Slideshow
*/

#sliderprinicpal { height:auto; width:675px; background-color:#ffffff; float:left; position:relative; margin-top:20px}

#slides {
	padding-left: 0px;
	z-index:100;
	height: 682px;
}

#slides2 {
	padding-left: 0px;
	z-index:100;
	height: 350px;
}
/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:675px;

	height: auto;
	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:675px;

	height:682px;
	display:block;
}

/*
	Next/prev buttons

*/
#slides .next,#slides .prev {
	position:relative;
	top: 10px;
	z-index:101;
}

#slides .next {
	left: 620px;
	z-index:100;
}

#slides .prev {
	
	left: 610px;
	z-index:100;
}

.clear { clear:both}