/*
        Load CSS before JavaScript
*/

/*
        Slides container
        Important:
        Set the width of your slides container
        Set to display none, prevents content flash
*/
.slides_container {
    width:470px;
    display:none;
    height: 580px;
}

/*
        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:960px;
    height:570px;
    display:block;
    position: relative;
}

/*
        Set the size of your carousel items
*/
.item {
    /*float:left;*/
    /*width:505px;*/
    /*height:692px;*/
    /*margin:0 10px;*/
    /*background:#efefef;*/
}

/*
        Optional:
        Reset list default style
*/
ul.pagination {
    list-style:none;
    margin:0;
    padding:0;
    display: block;
    position: relative;
    left: 50%;
    float: left;
    border: 0;
}

/*
        Optional:
        Show the current slide in the pagination
*/
.pagination .current a {
    color:red;
}