#slideshow {
    position: relative;
    height: 320px;
}

#slideshow.page {
    margin-top: 20px;
    margin-bottom: 25px;
    height: 340px;
}

.slides_container {
    width: 980px;
    margin: 0 -10px;
    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: 980px;
    height: 320px;
    display: block;
}

#slideshow.page .slides_container div.slide {
    height: 340px;
}

.slides_container div.slide.discovery {

}

.slides_container div.slide.quizz {
    text-align: center;
}

.slides_container a {
    display: inline-block;
    font-family: 'ModenaRegularRegular', Arial, Helvetica, sans-serif;
    font-size: 16px;
    background: url(../img/link_slide.png) no-repeat right center;
    padding-right: 36px;
    color: #999;
    text-decoration: underline;
}

/*
        Pagination
*/
#slideshow .pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    text-align: center;
}

#slideshow .pagination li {
    display: inline-block;
    list-style: none;
}

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

#slideshow .pagination li.current a {
    background-position: 0 -20px;
}

#slideshow h1 {
    margin: 0;
}