#carousel_holder {
	width:800px;
	height:400px;
	position:relative;
	margin: 0 auto;
	margin-top: 50px;
}

#frame {
	position:absolute;
	z-index:0;
	width:800px;
	height:300px;
	top:-3px;
}

/*
	Slideshow
*/

#slides {
	position:absolute;
	z-index:100;
}

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

.slides_container {
	width:800px;
	height: 400px;
	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 div.slide {
	width:750px;
	height:400px;
	display:block;
	padding-top: 50px;
}


/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	top:170px;
	left:  -44px;
	width:68px;
	height:60px;
	display:block;
	z-index:101;
	border: none;
	outline: none;
}

#slides .next {
	left:820px;
}

/*
	Pagination
*/

.pagination {
	margin:100px auto 0;
	width:60px;
	padding-right: 50px;
}

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

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	background-image:url(../img/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -13px;
}

/*
	Caption
*/

.caption {
	z-index:500;
	position: absolute;
	left:0;
	top:0;
	padding: 40px 20px 20px 60px;
	width:300px;
	height: 400px;
	font-size:16px;
	color:#fff;
	text-shadow:none;
}

/*---------------------
James' Form Extras
---------------------*/

.error label
{
	color: #FF0000;
}

.error input,
.error textarea
{
	border: solid 1px #FF0000;
}

.success_message
{
	color: #448139;
}