
/*
	Slideshow
*/

#slides {
	position:relative;
	z-index:100;
	height: 200px;
	margin-top: 25px;
}

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

.slides_container {
	width:957px;
	height:200px;
	overflow:hidden;
	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:957px;
	height:200px;
	display:block;
}


/*
	Next/prev buttons
*/

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

#slides .next {
	left:957px;
}

/*
	Pagination
*/

.pagination {
	margin:0px auto 0;
	width: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 -12px;
}

/*
	Caption
*/

.caption {
	z-index:500;
	position:absolute;
	margin-bottom:30px;
	padding:0px 0px 0 350px;
	/*background:#000;
	background:rgba(0,0,0,.5);*/
	font-size:38px;
	line-height:1.33;
	color:#002782;
	/*border-top:1px solid #000;
	text-shadow:none;*/
}
.caption .gradient{
	/* default background colour, for all layout engines that don't implement gradients */
	background: #2a6da9;
	/* gecko based browsers */
	/*background: -moz-linear-gradient(top, #5683bc, #6f9acf) !important;*/
	background: -moz-linear-gradient(top, #73cf2f, #ccffa6) !important;
	/* webkit based browsers */
	/*background: -webkit-gradient(linear, left top, left bottom, from(#73cf2f), to(#ccffa6)) !important;*/
	background: -webkit-gradient(linear, left top, left bottom, from(#feae31), to(#efe457)) !important;
	color:#002782; /* text colour (black) */
	height: auto; /* gradient uses the full height of the element */
	padding: 5px; /* distance from border edge to text */
	font-family:impact;
	background-color: #5683bc;
}


/*
	Footer
*/



/*
	Anchors
*/

/*a:link,a:visited {
	color:#599100;
	text-decoration:none;
}

a:hover,a:active {
	color:#599100;
	text-decoration:underline;
}*/