﻿.container { 
	width:210px;  
	height:500px; 
	
}

#slides {
	position:relative;
	
	z-index:100;
}
.slide h1{
	font: bold 9pt tahoma; width:180px; 
}
/*
	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:210px; 
	height:500px;
	overflow:hidden;
	position:relative;
	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 {margin-top:18px; margin-left:10px; 
	padding:0px;
	width:160px;
	height:200px;
	display:block;
	text-align:center;
	
}
/*
	Pagination
*/

.pagination {
	margin:26px auto 0;
	width:100px;
}

.pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -12px;
}


#slides .link {
	display:block;
	margin-top:10px;
	font-weight:800;
}