/* 
	Resets defualt browser settings
	reset.css
*/
:focus { outline:0; }
a:active { outline:none; }
ol,ul { list-style:none; }
blockquote:before,blockquote:after,q:before,q:after { content:""; }
blockquote,q { quotes:"" ""; }

/*
	Page Style
*/
#container {
	width:320px;
	margin:0 auto;
	position:relative;
	z-index:0;
}

#sliders {
	width:320px;
	height:300px;
	position:relative;
}

/*
	Slideshow style
*/

#slides {
	position:absolute;
	top:0px;
	left:0px;
	z-index:100;
}

/*
	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:320px;
	height:300px;
	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 {
	width:320px;
	height:300px;
	display:block;
}

.slide img {
	margin:0 15px;
	border:1px solid #333;
}

/*
	Pagination
*/

.pagination {
	display:none;
	margin:26px auto 0;
	width:100px;
}