/*
	Slideshow
*/
#projects-container {
	position:relative;
	width:640px;
	height:470px;
	}
#projects {
}

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

#projects .slides_container {
	width:640px;
	overflow:hidden;
	float:left;
	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:640px;
	height:420px;
	display:block;
}

/*
	Next/prev buttons
*/

#projects .next,#products .prev {
	position:absolute;
	top:127px;
	left:0;
	width:21px;
	height:0;
	padding-top:21px;
	overflow:hidden;
	display:block;
	z-index:101;
}

#projects .prev {
	background:url(../img/arrow-prev.png);
}

#projects .next {
	left:398px;
	background:url(../img/arrow-next.png);
}

/*
	Pagination
*/

#projects .pagination {
	width:640px;
	padding:10px 5px 10px 0;
	float:left;
}

#projects .pagination li {
	float:left;
	margin:0 10px 0 0;
	list-style:none;
}

#projects .pagination li a {
	display:block;
	width:75px;
	height:48px;
	margin:0;
	float:left;
}

#projects .pagination li.current a {
	border:0px solid #7f7f7f;
	margin:0;
}