/*
 * jquery.rs.carousel.css @VERSION
 * @HOMEPAGE
 *
 * Copyright (c) 2013 Richard Scarrott
 * http://www.richardscarrott.co.uk
 *
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 * Depends:
 *  a basic reset + items must have width & height
 */
 
 #carroussel_jquery
{
    width: 100%;
    height: 239px;
    float: left;
    padding-bottom: 20px;
}

.rs-carousel
{
    width: 100%;
}

.rs-carousel-mask
{
    overflow: hidden;
    height: 239px;
    width: 100%;
    position: relative;
}

.rs-carousel-runner
{
    position: relative;
    height:239px;
    margin: 0px;
    
    -moz-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    list-style: none;
}

.rs-carousel-horizontal .rs-carousel-item
{
    float: left;
}

.rs-carousel-transition .rs-carousel-runner
{
    -moz-transition: -moz-transform .800s ease;
    -webkit-transition: -webkit-transform .800s ease;
    -o-transition: -o-transform .800s ease;
    -ms-transition: -ms-transform .800s ease;
    transition: transform .800s ease;
}

.rs-carousel-item img
{
    width: 968px;
    height: 239px;
}

.rs-carousel-pagination:before
{
    content: attr(data-content);
    padding-right: 10px;
    font-size: 11px;
    line-height:11px;
    font-family: Georgia;
    color: #666666;
    text-transform: uppercase;
}
.rs-carousel-pagination
{
	padding: 0;
	list-style: none;
    text-align: right;
    width: 100%;
    margin: 0px;
    padding-bottom: 11px;
    padding-top: 8px;
    background-color: #6a6869;
}

.rs-carousel-disabled .rs-carousel-pagination {
    display: none;
}
		 
.rs-carousel-pagination-link {
	display: inline;
}

.rs-carousel-pagination-link a {
	padding: 1px 2px;
}

.rs-carousel-pagination-link a:hover {
	text-decoration: none;
}

.rs-carousel-pagination-link-active a {
	background: #CC3333;
	color: #CC3333!important;
	border: 1px solid #ebebeb;
}

.rs-carousel-pagination-link
{
    background-color:#ebebeb;   
    border: 1px solid #ebebeb;
    margin-right: 6px;
    text-decoration: none;
    font-size: 7px !important;
    line-height: 7px;
    width: 10px;
}

.rs-carousel-pagination-link a
{
    color: #ebebeb;
    text-decoration: none;
}

.rs-carousel-pagination-link-active
.rs-carousel-pagination-link a:active, 
.rs-carousel-pagination-link a:selec, 
.rs-carousel-pagination-link a:hover
{
    background-color:#ffffff;  
    color: #ffffff; 
    border: 1px solid #ebebeb;
    margin-right: 5px;
    text-decoration: none;
}
