/* 
	Resets defualt browser settings
	reset.css
*/


/*
	Page Style
*/

/*
#container {
	width: 800px;
	height: 146px;
	border: solid 1px;
	padding:0px;
	margin:0 auto;
	position:relative;
	z-index:0;
}*/

#cross
{
cursor:pointer;
cursor:hand;
}

#frame {
	position:absolute;
	z-index:0;
	width: 800px;
	height:600px;
	top:-0px;
	left:-80px;
}

#example {
	margin:5% auto 0;
	width: 80%;
	height:749px;
	position:relative;
	border: solid 0px;
	
}

/*
	Slideshow style
*/

#slides {
	
	top:0px;
	left:0px;
	z-index:100;	
	margin:0 auto;
}

/*
	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: 1200px;
	height:749px;
	overflow:hidden;
	position:relative;
	display:none;
	margin:0 auto;
		border: solid 0px red;
}

/*
	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:0px;
	width: 1200px;
	height:749px;
	display:block;
		border: solid 0px blue;
		margin:0 auto;
}#slides .slide img {
	background-size:contain;
}

/*
	Next/prev buttons
*/
#slides .next,#slides .prev {
	position:absolute;
	top:45%;
	left:-0px;
	width:24px;
	/*height:43px;*/
	display:block;
	z-index:101;
}

#slides .next {
	left:1400px;
}

/*
	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-image:url(../images/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -12px;
}

