/* ///////////////Slides////////////////////  Info unter: http://slidesjs.com/ */


#example {
	width:500px;
	height:600px;
	position:relative;
	margin-top: 30px;
	}

/* 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:490px;
	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 a {
	width:490px;
	height:600px;
	display:block;
	}

.slides_container a img {
	display:block;
	}

/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	top:290px;
	left:-50px;
	width:40px;
	height:37px;
	display:block;
	z-index:101;
	}

#slides .next {
	left:500px;
	}

/*
	Pagination
*/

.pagination {
	position: relative;
    text-align: center;
    padding-top: 10px;
    margin-top: -630px;
    left: 0;
    right: 0;
    }
    
.pagination a {
    display: -moz-inline-stack; /* for Firefox */
    display: inline-block;
    width: 13px;
    height: 0;
    padding-top: 12px;
    background-image: url(../images/slide/pagination.png);
    background-repeat: no-repeat;
    text-indent: -9999px;
    border: 0;
    outline: none;
    cursor: pointer;
    }
    
.pagination a.current {
	background-position: 0 -11px;
    }
