/* 
	Resets defualt browser settings
	reset.css
*/
:focus { outline:0; }
a:active { outline:none; }
body { line-height:1; color:black; background:white; }
ol,ul { list-style:none; }
table { border-collapse:separate; border-spacing:0; }
caption,th,td { text-align:left; font-weight:normal; }
blockquote:before,blockquote:after,q:before,q:after { content:""; }
blockquote,q { quotes:"" ""; }
#example {
	width:638px;
	height:386px;
	position:relative;
	left: 20px;
}

#frame {
position: relative;
z-index: 0;
width: 638px;
height: 386px;
top: -1px;
left: -10px;
}

/*
	Slideshow
*/

#slides {
	position:absolute;
	top:15px;
	left:4px;
	z-index:100;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width: 610px;
	height: 355px;
	overflow:hidden;
	position:relative;
	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.slide {
	width:610px;
	height:355px;
	display:block;
}


/*
	Next/prev buttons
*/


#slides .next, #slides .prev {
    position: absolute;
    top: 130px;
    left: -30px;
    width: 50px;
    height: 50px;
    display: block;
    z-index: 101;
}
#slides .next {
    left: 595px;
}
/*
	Pagination
*/

.pagination {
margin: 0 auto;
width: 200px;
overflow: auto;
position: relative;
top: -25px;
z-index: 999;;
}

.pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:18px;
	height:0;
	padding-top:20px;
	background-image:url(../img/pagination.png);
	background-position:1 1;
	float:left;
	overflow:hidden;
}

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

/*
	Caption
*/

.caption {
z-index: 500;
position: absolute;
bottom: -35px;
left: 40px;
height: 130px;
padding: 5px 20px 0px;
background: none repeat scroll 0% 0% rgba(255, 255, 255, 0.75);
width: 340px;
font-size: 20px;
color: rgb(0, 0, 0);
text-shadow: none;
}
.caption a{
color: black;
}
.caption a:hover{
color:red;
}