/*
	Slideshow
*/

#slides {
        position:relative;
        top:0px;
        left:0px;
        width:890px;
        height:300px;
	z-index:100;
    }
#slides2 {
        position:relative;
        top:0px;
        left:0px;
        width:380px;
        height:240px;
	z-index:100;
    }

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
        width:890px;
        overflow:hidden;
	position:relative;
        display:none;
}
.slides_container_small {
        width:380px;
        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:890px;
        height:300px;
        display:block !important;
}
.slides_container_small div.slide {
        width:380px;
        height:240px;
        display:block !important;
}
/*
	Pagination
*/

.pagination {
        position:absolute;
        bottom:5px;
        right:5px;
        margin:0px auto 0;
        width:50px;
        height:12px;
        z-index:800;
}

.pagination li {
        float:left;
        margin:0 2px;
        list-style:none;
}

.pagination li a{
        display:block;
        width:12px;
        overflow:hidden;
        height:0;
        padding-top:12px;
        background-image:url(/images/interface/pagination.png);
        background-position:0 0;
        float:left;
}

.pagination li.current a {
        background-position:0 -12px;
}

/*
	Caption
*/

.caption {
        position:absolute;
	left:0;
        height:50px;
        padding:25px 10px 0 20px;
        background:transparent url(/images/interface/pixel_black_trans.png) repeat;
        width:890px;
        font-size:14px;
        color:#fff;
        text-shadow:none;
        font-family: 'PT Sans Narrow', Arial, sans-serif;
        z-index:500;
}
.caption2 {
        position:absolute;
	left:0;
        height:20px;
        padding:25px 10px 0 20px;
        background:transparent url(/images/interface/pixel_black_trans.png) repeat;
        width:380px;
        font-size:14px;
        color:#fff;
        text-shadow:none;
        font-family: 'PT Sans Narrow', Arial, sans-serif;
        z-index:500;
}

.slide_header{
        font-size:25px;
        font-family:Georgia, serif;
        color:gold;
        margin-right:10px;
}
