/*
This is the visible area of you carousel.
Set a width here to define how much items are visible.
The width can be either fixed in px or flexible in %.
Position must be relative!
*/
.jcarousel {
    position: relative;
    overflow: hidden;
    max-height: 471px;
}

/*
This is the container of the carousel items.
You must ensure that the position is relative or absolute and
that the width is big enough to contain all items.
*/
.jcarousel ul {
	width:500%;
    position: absolute;
    /* Optional, required in this case since it's a <ul> element */
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    top:0;
}

/*
These are the item elements. jCarousel works best, if the items
have a fixed width and height (but it's not required).
*/
.jcarousel li {
    /* Required only for block elements like <li>'s */
    float: left;
    width:20%;
    position: relative;
    margin: 0;
    padding: 0;
    top:0;
    max-height: 476px;
    background-color: black;
}

.jcarousel ul li a {
    position: relative;
    top:0;
    left:0;
    display: block;
    line-height:0;
}

.jcarousel ul li a img {
    /*margin: auto;*/
    height: 100%;
    width: 100%;
    top:0;
    min-height: 331px;
    max-height: 476px;
}

.jcarousel-mini {
	max-height: 331px;
}

.jcarousel-mini li {
	max-height: 331px;
    background-color: black;
}

.jcarousel-mini ul li a img {
	max-height: 331px;
}

.description {
    text-align: center;
    position:absolute;
    top: 0;
    left: 0;
    /*width: 260px;*/
    width: 100%;
	height:100%;
    display:block;
    /*font-family: 'Yanone Kaffeesatz';*/
    z-index: 5;
}

.description-text {
	position:absolute;
	width:100%;
	bottom:0px;
    font-size: 14px;
    color: #fff;
    overflow-y: auto;
    text-align:left;
    padding-bottom:15px;
    padding-top:20px;
    background-color: black;
    opacity: 0.5;
}

.description-text h2 {
	line-height: 1em;
	margin:0;
    padding-left:20px;
    padding-right:20px;
}

.description-text h3 {
	line-height: 1em;
	font-size:21px;
	margin:10px 0;
    padding-left:20px;
    padding-right:20px;
}

.content-overflow {
    height: 70%;
    overflow-y: auto;
}

.show-description-label {
    width: 40px;
    height: 27px;
    position: absolute;
    text-align: center;
    padding-top: 7px;
    color: rgb(20,20,20);
    top:0;
    left:0;
    cursor: pointer;
    font-family: 'WebSymbolsRegular';
    background-color: #FFFFF0;
    z-index: 6;
    display:none;
}

/** Carousel Controls **/
.jcarousel-control {
	position: absolute;
    margin-top: -20px;
	top:50%;
    width: 40px;
    height: 40px;
	opacity: 0.7;
    cursor: pointer;
    z-index: 1000;
    background-color: transparent;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s;
    text-shadow: 0px 0px 3px rgba(0,0,0,.8);
}

.jcarousel-control:hover { opacity: 1 }

.jcarousel-control-prev {
	left:15px;
	background: url(../images/fleche-carrousel-gauche.png) no-repeat top left;
}

.jcarousel-control-next {
	right:15px;
	background: url(../images/fleche-carrousel-droit.png) no-repeat top left;
}

/** Carousel Pagination **/

.jcarousel-pagination {
    position: absolute;
    bottom: 0;
    width:100%;
    text-align:center;
}

.jcarousel-pagination a {
    text-decoration: none;
    display: inline-block;

    font-size: 11px;
    height: 10px;
    width: 10px;
    line-height: 10px;

    background: #fff;
    color: #4E443C;
    border-radius: 10px;
    text-indent: -9999px;

    margin-right: 7px;

    -webkit-box-shadow: 0 0 2px #4E443C;
    -moz-box-shadow: 0 0 2px #4E443C;
    box-shadow: 0 0 2px #4E443C;
}

.jcarousel-pagination a.active {
    background: #4E443C;
    color: #fff;
    opacity: 1;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75);
}