/* 
	Resets defualt browser settings
	reset.css
*/
:focus { outline:0; }
a:active { outline:none; }
 
table { border-collapse:separate; border-spacing:0; }
caption,th,td { text-align:left; font-weight:normal; }
blockquote,q { quotes:"" ""; }

/*
	Page Style
*/

#example {
	width:1000px;
	height:335px;
	position:relative;
	
}

/*
	Slideshow style
*/

#slides {
	position:absolute;
	top:0;
	left:0;
	
 
}

/*
	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:1000px;
	height:335px;
	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 {
	/*padding:20px;*/
	width:1000px;
	height:335px;
	display:block;
}

/*
	Next/prev buttons
*/
#slides .next,#slides .prev {
	position:absolute;
	top:130px;
	left:-0px;
	width:24px;
	height:43px;
	display:block;
	z-index:101;
	display:none;
}

#slides .next {
	left:975px;
	display:none;
}

/*
	Pagination
*/
 
/*
	Pagination
*/

.pagination {
	 float:right;
	 width:80px;
	 margin:-33% 0 0 0 ;
	 z-index:9999;
	 padding-top:10px;
	 
}

.pagination li {
    
	float:left;
	margin:0 1px;
   
 
}

.pagination li a {
     
	 z-index:9999;
	 position:relative;
	display:inline;
	width:12px;
	height:2px;
	padding-top:10px;
    background:url(../images/pagination1.png) no-repeat;
	background-position:0 0;
	float:right;
    overflow:hidden;
	
}

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

#example a img, #example a:hover img{
	border:none;
}