/**
 * Slideshow
 *
 * @author Steven Rosato, graphic design by Jean-François Hamelin
 */

/* containers */
.slideshow-wrapper {
    width: 880px;
    height: 250px;
    background: url('img/bg.png') repeat-x;
    margin: 10px auto 25px auto;
    position: relative;
    z-index: 50;
}

.slideshow { position: relative; display: none;}
.slideshow .slider { position: relative; top: -40px; z-index: inherit; }

/* slide control buttons */
.slideshow .backward,
.slideshow .forward {
	width: 55px;
	height: 55px;
	position: absolute;
	top: 100px;
	cursor: pointer;
}

.slideshow .backward {
    left: -25px;
	background: url('img/btn-left-green.png') no-repeat;
}

.slideshow .forward {
	right: -25px;
	background: url('img/btn-right-green.png') no-repeat;
}

/* images */
.slideshow .slider .image {
	width: 405px;
	min-height: 280px;
	position: absolute;
	top: 25px;
	left: 30px;
    border: 1px solid black;
}

/* badges */
.slideshow .slider .badge {
	position: absolute;
	left: 350px;
	width: 100px;
	height: 100px;
	z-index: 1;
}

.slideshow .slider .badge span {
	color: white;
	font-weight: bold;
	font-size: 0.9em;
	display: block;
    margin: 35px 0 0 0;
	padding: 5px;
	text-align: center;
}

/* background */
.slideshow .background {
	min-width: 900px;
	height: 232px;
	position: absolute;
	top: 0px;
	bottom: 20px;
	margin: 0 20px;
	background: url('img/bg.jpg') repeat-x;
}

/* content wrapper */
.slideshow .slider .content {
    position: absolute;
    width: 430px;
	height: 170px;
	margin: 50px 0 0 440px;
	background: none;
	color: white;
}

/* title */
.slideshow .slider .content .title {
	margin: 20px 20px 10px 20px;
	font-weight: bold;
    font-size: 120%;
    color: white;
}

/* items */
.slideshow .slider .items { height: 100px; font-size: 0.9em; }

.slideshow .slider .items ul {
    margin: 0 0 0 5px;
}

.slideshow .slider .items li {
    padding: 0 0 0 20px;
    background: url('img/arrow.png') no-repeat;
}

.slideshow .slider .items ul.column-left,
.slideshow .slider .items ul.column-right {
	width: 140px;
	min-height: 70px;
	float: left;
    list-style-type: none;
}

/* call to action */
.slideshow .cta {
    clear: left;
    padding: 0 0 0 60px;
}

.slideshow .cta img {
    vertical-align: middle;
}

.slideshow a.slide-cta {
    font-size: large;
    color: orange;
    font-weight: bold;
}

/* button */
.slideshow .slider a.button {
	margin: 0 0 0 18px;
	font-size: 0.8em;
	color: white;
	font-weight: normal;
	height: 26px;
	float: left;
	background: url('img/btn-infos-right.png') no-repeat top right;
}

.slideshow .slider a.button span {
	height: 26px;
	display: block;
	background: url('img/btn-infos-left.png') no-repeat;
	margin: 0 6px 0 0;
	padding: 5px 0 4px 10px;
}

.slideshow .slider a.button:Hover { text-decoration: none; }

/* tabs (those little circles below slides) */
.slideshow .tabs { clear:both; margin-left: 660px; }

/* single tab */
.slideshow .tabs a {
    width:8px;
    height:8px;
    float:left;
    margin: 255px 0 0 3px;
    background: url('img/navigator.png') 0 0 no-repeat;
    display: block;
    font-size:1px;
}

/* mouseover state */
.slideshow .tabs a:hover { background-position: 0 -8px; }

/* active state (current page state) */
.slideshow .tabs a.current { background-position: 0 -16px; }

.slideshow .shadow {
    background: url('img/shadow.jpg') no-repeat;
    width: 295px;
    height: 50px;
    position: absolute;
    top: 280px;
    left: 100px;
}
