/*
***********************************************************
Title: jcarousel.css
Author: Jacco van der Post - www.TYPO3-webdesign.nl
Date: june 2010
***********************************************************
*/

.carouselContainer {
    /* width, height and background-color are determined in constant editor */
    /*
    padding: 0 5px;
	-moz-box-shadow:0px 0px 5px #ccc;
    -webkit-box-shadow: 0px 0px 5px #ccc;
    box-shadow: 0px 0px 5px #ccc;
	*/
    position: relative;
	width: 570px !important;
    margin-bottom: 50px;
}

.carouselContainer :focus {
    outline: 0; /* dont give ugly outline border arround images */
}

.carousel {
    color: #f0f0f0;
    margin-left: 0px;
}

.jpcarousel {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jpcarousel li {
    display: block;
    list-style: none;
    /*border:1px solid #cccccc;*/
    background:white;
    /*
    padding: 9px;
	margin:12px 7px 15px 7px;
	*/
    float: left;
    overflow: hidden;
}

.carousel img {
    border: 0;
}

/* we give the dummy img clear.gif a background, to show nice buttons */
.carouselbuttons a img {
    background: none no-repeat #fff;
    padding: 0;
    height: 380px;
    width: 24px;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 0px;
    opacity: 0.8;
}

.carouselbuttons a.carouselprev img {
    left:0px;
	background-image: url(../img/mediaplaybutton_prev.png);
    background-position: center;
}

.carouselbuttons a.carouselprev img:hover {
	background-image: url(../img/mediaplaybutton_prev.png);
    background-position: center;
}

.carouselbuttons a.carouselnext img {
	background-image: url(../img/mediaplaybutton_next.png);
    background-position: center;
    right:0px;
}

.carouselbuttons a.carouselnext img:hover {
	background-image: url(../img/mediaplaybutton_next.png);
    background-position: center;
}

h3.carousel_title {
    padding: 0;
    margin: 0;
    color: #666666;
    font-family: arial, sans-serif;
    font-size: 11px;
    font-weight: bold;
    line-height: 20px; /* vertical center the title a bit */
    font-style: italic;
    text-align: center;
    display: block; /* needed for centering title */
}

.carouselcaption {
    margin-top: -20px;
    color: #666666;

}

.carouselcaption span {
    padding: 4px 8px 4px 8px;
    background: url('../img/caption_bg.png') repeat;

}

.pagination {
    text-align: center;
}

.pagination a {
    /*
	background: url(../img/miscellaneous_sprite.png) 0 -300px no-repeat transparent;
	*/
    background: url(../img/greendot.png) center center no-repeat transparent;
    width: 15px;
    height: 15px;
    margin: 0 5px 0 0;
    display: inline-block;
}

.pagination a.selected {
    background: url(../img/greendot_full.png) center center no-repeat transparent;
    cursor: default;
}

.pagination a span {
    display: none;
}

