/*
Slideshow
*/

#slides {
    /*
    position:absolute;
    top:15px;
    left:4px;
    z-index:100;
    margin: 16px 0 0 39px;
    */
    width: 980px;
    height: 383px;
    border: 1px solid #000000;
    position: absolute;
}

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

/*.slides_container {
width: 678px;
overflow: hidden;
position: relative;
display: none;
height: 300px;

        
}

/*
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 {
    display: block;
    height: 383px;
    width: 980px;
}


/*
Next/prev buttons
*/

#slides .next,#slides .prev {
    position:absolute;
    top:143px;
    width:31px;
    height:34px;
    display:block;
    z-index:101;
}

#slides .next {
    left: 949px;
}

/*
Pagination
*/

.pagination {
    /*    margin:5px auto 0;
        width:100px;
        background-image: url(../img/repeat_corner.png);
        right: 10px;
        padding: 4px 3px;
        position: absolute;
        top: 270px;
        z-index: 900;
        border-radius: 2px 2px 2px 2px;
        text-align: right;
        left: auto;*/

    margin: 0;
    padding: 0;
    width: 960px;
    padding-right: 20px;
    border: solid 0px #715494;
    position: absolute;
    top:340px;
    z-index: 900;
    text-align: right;

}

.pagination li {
    /*float:right;*/
    margin:0;
    padding: 0;
    list-style: none;
    /*    background-image:url(../img/slider-button.png);*/
    overflow:hidden;
    margin: 0px;
    display: inline-block;
    background: #001F43;
    margin-right: 15px;
}

.pagination li:hover, .pagination li.current {
    /*    background-image:url(../img/slider-button-selected.png);*/
    background: #1560b6;

}

.pagination li a {
    display:block;
    color:#ED7A1C;
    width: 20px;
    height: 20px;
    text-align: center;
    vertical-align: middle;
    border:solid 1px #d3d3d3;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    padding-top: 3px;
}
/*
Caption
*/

.caption {
    z-index:500;
    position:absolute;
    padding:15px;
    background:rgba(0,0,0,.5);
    width:980px;
    text-shadow:none;
}

.caption .title {
    color: #ED7A1C;
    font-size: 38px;
    font-weight: bold;
    float: left;
    width: 100%;
}

.caption .text {
    color: #5C2D75;
    font-size: 14px;
    float: left;
    width: 100%;
}

.caption img {
    bottom: -19px;
    float: left;
    left: 42px;
    position: relative;
}