/*-----------------------------------------------------Slideshow-------------------------------------------------------------*/

/*============================*/
/*=== Default Slider Styles ===*/
/*============================*/
/* The Nivo Slider styles 
We include the nivo-slider.css file before the style.css file. 
This is so we can override the default Nivo Slider styles from nivo-slider.css in style.css.*/
.nivoSlider {
	position:relative;
}
.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
}
/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	border:0;
	padding:0;
	margin:0;
	z-index:6;
	display:none;
}
/* The slices and boxes in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
}
.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
}
/* Caption styles */
.nivo-caption {
	position:absolute;
	left:0px;
	bottom:0px;
	width:100%;
	z-index:8;
}
.nivo-caption p {
	padding:5px;
	margin:0;
}
.nivo-caption a {
	display:inline !important;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	position:absolute;
	top:35%;
	z-index:9;
	cursor:pointer;
}
.nivo-prevNav {
	left:0px;
}
.nivo-nextNav {
	right:0px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav a {
	position:relative;
	z-index:9;
	cursor:pointer;
}
.nivo-controlNav a.active {
	font-weight:bold;
}


/*============================*/
/*=== Custom Slider Styles ===*/
/*============================*/


#slider-wrapper {
    width:500px;
    height:400px;/*aussi haut pour que meme le titre senso-ji soit tout inclus car long. Si je ne fais pas ça, le slide dépasse sur mon menu et rien ne fonctionne*/
    margin:0 auto;
    position:relative;
	overflow: hidden;/*Pour Google Chrome!*/
}

#slider {
    position:relative;
	top: 40px;
	height:400px;/*aussi haut pour que meme le titre senso-ji soit tout inclus car long. Si je ne fais pas ça, le slide dépasse sur mon menu et rien ne fonctionne*/
    width:100%;
    background:url(/mes_voyages/photos/fichiers_slide/images/loading.gif) no-repeat 50% 50%;
	margin: auto;
}

#slider img {
    position:absolute;
	top: 0px;
    left:0px;
    display:none;
}

#slider a {
    border:0;
    display:block;
}

.nivo-caption {
    top:280px; /* Vertically centre the captions */
	left: 0;
    overflow:hidden;
   /* text-shadow:none;*/
    color:#4c4b4b;
}
.nivo-caption p {
    padding:5px;
}
.nivo-caption a { 
    color:#333;
    font-weight:bold;
    font-size:20px;
    text-transform:uppercase;
}

.nivo-directionNav a {
	display:block;
	width:30px;
	height:30px;
	background:url(/mes_voyages/photos/fichiers_slide/images/arrows.png) no-repeat;
	text-indent:-9999px;
	border:0;
}
a.nivo-nextNav {
	background-position:-30px 0;
	right:10px;
}
a.nivo-prevNav {
	left:10px;
}