/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/
.slides_container {
	width:500px;
	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 {
	width:500px;
	height:333px;
	display:block;
}

/*
	Optional:
	Reset list default style
*/
.pagination {
	list-style:none;
	margin:0;
	padding:0;
}

/*
	Optional:
	Show the current slide in the pagination
*/
.pagination .current a {
	color:red;
}


/*
	CUSTOMIZATION
*/

/* remove slide list */
.ss_button:hover{
	text-decoration:underline;
}

#slides{
	overflow:hidden;
	height:333px;
}

.slides_container{
	position:relative;
	top:-666px;
	left:0px;
	z-index:2;		
}

#prev{
	position:relative;
	top:0px;
	left:0px;
	width:200px;
	height:333px;
	z-index:3;
	cursor:pointer;
}

#next{
	text-align:right;
	position:relative;
	top:-333px;
	left:300px;
	width:200px;
	height:333px;
	z-index:4;	
	cursor:pointer;	
}