@charset "UTF-8";
/* CSS Document */

/*
	Slideshow style
*/

#slides {
	width:735px;
	height:429px;
	position:relative;
	left:90px;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	If height not specified height will be set by the slide content
	Set to display none, prevents content flash
*/

.slides_container {
	width:735px;
	height:429px;
	margin: 0 auto;
	overflow:hidden;
	display:none;
}

/*
	Each slide
	Important:
	Set the width of your slides
	Offeset for the 20px of padding
	If height not specified height will be set by the slide content
	Set to display block
*/

#slides .slide {
	padding:0px;
	width:735px;
	height:429px;
	display:block;
}

/*
	Next/prev buttons
*/
.switches {
	width:843px;
	height:56px;
	position:absolute;
	left:-54px;
	top:185px;
	list-style:none;
	}
	
.switches ul li {
	margin:0 0 0 20px;
	padding:0;
	list-style:none;
	display:block;
	}
	
.switches a {
	width:54px;
	height:56px;
	display:block;
	list-style:none;}
	
.prev a {
	background:url(../img/slider/arrow.png) 0 -112px;
	width:54px;
	float:left;
}
.prev a:hover {
	background-position: 0 -168px;}

.next a {
	background:url(../img/slider/arrow.png) 0 0;
	width:54px;
	float:right;
}
.next a:hover {
	background-position:0 -56px;}

/*
	Pagination
*/

.pagination {
	margin:5px 0 0 0px;
	width:55px;
	float:right;
}

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

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

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

.pagination li a:hover {
	background-position:0 -12px;}


/*
	Footer
*/

#footer {
	text-align:center;
	width:580px;
	margin-top:9px;
	padding:4.5px 0 18px;
	border-top:1px solid #dfdfdf;
}

#footer p {
	margin:4.5px 0;
	font-size:1.0em;
}

/*
	Type and anchors
*/



#slides .link {
	display:block;
	margin-top:10px;
	font-weight:800;
}