@charset "utf-8";
/* CSS Document */

/*Load CSS before JavaScript*/
/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/
#slides .slides_container {
		width:320px;
		height:240px;
		display:none;
}
/* Safari and IE explicit height*/
.slides_container { 
        position:relative; 
        top:0px; 
        height:240px; 
} 
/*fixes IE 7 image link behavior */ 
.slides_container a:link img { 
        border: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 .slides_container div {
		width:320px;
		height:240px;
		display:block;
		padding: 0px 20px 0px 20px;
}

/* --- Pagination --- */

.pagination { 
	margin:0px; 
    width:500px; /* sets the width for the area of the button dots below the images*/
	position: absolute; 
	top: 775px; 
	left: 800px; /*adjust this depending on nav dot count*/ 
	z-index: 100; 
} 

.pagination li {
	float:left;
	margin:0 2px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	background-image:url(../images/ss/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -12px;
}

/* --- Next/prev buttons ---*/

#slides .next,#slides .prev {
	position:absolute;
	top:523px;
	left:697px;
	width:20px;
	height:240px;
	display:block;
	z-index:101;
}

#slides .next {
	left:1037px;
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
} 
/*END CSS for Slideshow*/