/* Jaison Fontaine */
html { background-color: #f9f9f9; /* fond d'écran */ }

* { 
	margin: 0; 
	padding: 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	position: relative;
	margin: 0 auto; /* G & D : centre automatiquement */
	width: 1050px; 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1rem;
	background-color: #fff;
	color: #4b5360;
	line-height: 1.5;
}

h1 {
	margin: 10px 0;
	font-size: 2rem;
	font-family: 'Courgette', Arial, sans-serif;
}

h2 {
	margin: 13px 0;
	font-size: 1.5rem;
	font-family: 'Courgette', Arial, sans-serif;
}

h3 {
	margin: 16px 0;
	font-size: 1.125rem;
}

h4 {
	margin-bottom: 16px;
	font-size: 1rem;
}

p {
	margin: 16px 0;
}

header {
	position: relative;
	margin: 0 auto;
	height: auto;
}

header h1{
	position: absolute;
	text-indent: -9999px;
}

#logo {
	float: left;
	padding: 15px 45px; 
}

/************************************/
/******* Navigation principale ******/
/************************************/
#nav-principale { 
	position: relative;
	float: right;
	top: 50px;
	right: -10px;
	width: 730px; 
	text-align: right;
}

#nav-principale:before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	
	border-top: 50px solid #fff;
	border-right: 40px solid transparent;
	border-left: 0px solid transparent;
	border-bottom: 0;
	
	z-index: 50;
}

#pointe-menu-droite {
	position: absolute;
	content: '';
	top: 40px;
	right: -10px;
	
	border-top: 0;
	border-right: 10px solid transparent;
	border-left: 0;
	border-bottom: 10px solid #183d7c;
}

#nav-principale ul {
	float: left;
	width: 100%;
	
	background: rgb(46,96,176);
	background: -moz-linear-gradient(top, rgba(46,96,176,1) 0%, rgba(24,61,124,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(46,96,176,1)), color-stop(100%,rgba(24,61,124,1)));
	background: -webkit-linear-gradient(top, rgba(46,96,176,1) 0%,rgba(24,61,124,1) 100%);
	background: -o-linear-gradient(top, rgba(46,96,176,1) 0%,rgba(24,61,124,1) 100%);
	background: -ms-linear-gradient(top, rgba(46,96,176,1) 0%,rgba(24,61,124,1) 100%);
	background: linear-gradient(to bottom, rgba(46,96,176,1) 0%,rgba(24,61,124,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e60b0', endColorstr='#183d7c',GradientType=0 );
	
	color: #fff;
	font-size: 1.125rem;
}


#nav-principale li { 
	display: inline-block;
	vertical-align: middle;
} 

#nav-principale li a, #nav-principale li a:visited { 
	display: block; 
	height: 50px;
	line-height: 50px;
	padding: 0 30px; 
	color: #fff; 
	font-weight: bold;
	text-decoration: none;
	outline: none;
} 

#nav-principale li a:hover, #nav-principale a#actif  { 
	background: rgb(131,171,219);
	background: -moz-linear-gradient(top, rgba(131,171,219,1) 0%, rgba(92,125,178,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(131,171,219,1)), color-stop(100%,rgba(92,125,178,1)));
	background: -webkit-linear-gradient(top, rgba(131,171,219,1) 0%,rgba(92,125,178,1) 100%);
	background: -o-linear-gradient(top, rgba(131,171,219,1) 0%,rgba(92,125,178,1) 100%);
	background: -ms-linear-gradient(top, rgba(131,171,219,1) 0%,rgba(92,125,178,1) 100%);
	background: linear-gradient(to bottom, rgba(131,171,219,1) 0%,rgba(92,125,178,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#83abdb', endColorstr='#5c7db2',GradientType=0 );
}
/* Fin navigation principale */

#conteneur { 
	position: relative;
	width: 1050px; 
	margin: 0 auto;
	background-color: #fff;
}

#contenu { 
	position: relative;
	width: auto;
	padding: 25px 50px;
}

/************************************/
/************** Accueil *************/
/************************************/
#section-diapo {
	position: relative;
	text-align: center;
}

#fleche-gauche, #fleche-droite {
	vertical-align: middle;
	
	opacity: 1;
	-webkit-transition: opacity 1s ease-in-out;
	-o-transition: opacity 1s ease-in-out;
	-ms-transition: opacity 1s ease-in-out;
	-moz-transition: opacity 1s ease-in-out;
	transition: opacity 1s ease-in-out;
}

#fleche-gauche:hover, #fleche-droite:hover {
	opacity: 0.5;
	cursor: pointer;
}

#fleche-gauche {
	-webkit-border-radius: 10px 0 0 10px;
	-moz-border-radius: 10px 0 0 10px;
	-o-border-radius: 10px 0 0 10px;
	border-radius: 10px 0 0 10px;
}

#fleche-droite {
	-webkit-border-radius: 0 10px 10px 0;
	-moz-border-radius: 0 10px 10px 0;
	-o-border-radius: 0 10px 10px 0;
	border-radius: 0 10px 10px 0;
}

#section-diapo img#diapo {
	display: inline-block; /* display : block enlève l'espace en bas de l'image */
	border: 3px solid #ddd;
	padding: 3px;
	vertical-align: middle;
}

#mini-diapo {
	position: absolute;
	top: 310px;
	width: 1050px;
	text-align: center;
}

#mini-diapo img {
	margin: 0 5px;
	border: 1px solid #fff;
	
	opacity: 0.5;
	-webkit-transition: opacity 1s ease-in-out;
	-o-transition: opacity 1s ease-in-out;
	-ms-transition: opacity 1s ease-in-out;
	-moz-transition: opacity 1s ease-in-out;
	transition: opacity 1s ease-in-out;
}

#mini-diapo img:hover {
	opacity: 1;
	cursor: pointer;
}

#voyage {
	padding-bottom: 10px;
}

#partir {
	padding-top: 20px;
	padding-bottom: 10px;
}


/************ Destinations de choix ************/
#destinations .box {
	display: inline-block;
	position: relative;
	border: 2px solid #ddd;
	padding: 0;	

	width: 300px;
	height: 300px;
	
	margin: 4px;
	overflow: hidden;
	
	-webkit-box-shadow: 1px 1px 1px 1px #ddd;
	-moz-box-shadow: 1px 1px 1px 1px #ddd;
	-o-box-shadow: 1px 1px 1px 1px #ddd;
	box-shadow: 1px 1px 1px 1px #ddd;
}

#destinations .box .caption {
	position: absolute;
	color: #fff;
	
	background: rgb(46,96,176);
	background: -moz-linear-gradient(top, rgba(46,96,176,1) 0%, rgba(24,61,124,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(46,96,176,1)), color-stop(100%,rgba(24,61,124,1)));
	background: -webkit-linear-gradient(top, rgba(46,96,176,1) 0%,rgba(24,61,124,1) 100%);
	background: -o-linear-gradient(top, rgba(46,96,176,1) 0%,rgba(24,61,124,1) 100%);
	background: -ms-linear-gradient(top, rgba(46,96,176,1) 0%,rgba(24,61,124,1) 100%);
	background: linear-gradient(to bottom, rgba(46,96,176,1) 0%,rgba(24,61,124,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e60b0', endColorstr='#183d7c',GradientType=0 );
	
	z-index: 100;
	
	-webkit-transition: all 1s ease-out;
	-moz-transition: all 1s ease-out;
	-o-transition: all 1s ease-out;
	transition: all 1s ease-out;
	
	left: 0;
}

#destinations .box .slide-caption {
	width: 300px;
	height: 300px;
	text-align: left;
	padding: 15px;
	left: -300px;
	font-size: 0.875rem;
	line-height: 1.3;
}

#destinations .box .slide-caption ul {
	padding-left: 15px;
	padding-bottom: 10px;
	list-style: url('../images/puce-blanche.png');
}

#destinations .box:hover .slide-caption {
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
	
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

#destinations .box img {
	position: absolute;
	left: 0;
	
	-webkit-transition: all 1s ease-out;
	-moz-transition: all 1s ease-out;
	-o-transition: all 1s ease-out;
	transition: all 1s ease-out;
}

#destinations .box:hover img {
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
	
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

#destinations .box .slide-caption .prix{
	float: right;
}


#destinations .box .slide-caption .details {
	text-align: right;
}

#destinations .box .slide-caption .details button {
	padding: 5px 10px;
	font-size: 0.875rem;
	color: #000;
	font-weight: bold;
	border: 1px solid #ddd;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	
	background: #f9e868;
	background: -moz-linear-gradient(top,  #f9e868 0%, #edcd00 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9e868), color-stop(100%,#edcd00));
	background: -webkit-linear-gradient(top,  #f9e868 0%,#edcd00 100%);
	background: -o-linear-gradient(top,  #f9e868 0%,#edcd00 100%);
	background: -ms-linear-gradient(top,  #f9e868 0%,#edcd00 100%);
	background: linear-gradient(to bottom,  #f9e868 0%,#edcd00 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9e868', endColorstr='#edcd00',GradientType=0 );

	opacity: 1;
	-webkit-transition: opacity 1s ease-in-out;
	-o-transition: opacity 1s ease-in-out;
	-ms-transition: opacity 1s ease-in-out;
	-moz-transition: opacity 1s ease-in-out;
	transition: opacity 1s ease-in-out;
}
		
#destinations .box .slide-caption .details button:hover { 
	opacity: 0.5;
}
/************ fin destinations de choix ************/

/************ Dernières chances ************/
#dernieres-chances .box {
	display: inline-block;
	position: relative;
	border: 2px solid #ddd;
	padding: 0;

	width: 300px;
	height: 300px;
	
	margin: 4px;
	overflow: hidden;
}

#dernieres-chances .box .caption {
	position: absolute;
	color: #000;
	font-weight: bold;
	opacity: 0.7;
	
	background: #fff;
	
	z-index: 100;
	
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	
	left: 0;
}

#dernieres-chances .box .slide-caption {
	top: 60px;
	text-align: left;
	padding: 15px 30px;
	
	-webkit-border-radius: 0 50px 50px 0;
	-moz-border-radius: 0 50px 50px 0;
	-o-border-radius: 0 50px 50px 0;
	border-radius: 0 50px 50px 0;
}

#dernieres-chances .slide-caption:hover {
	padding: 15px 40px;
	font-size: 1.5rem;
	cursor: pointer;
}

#dernieres-chances .box img {
	position: absolute;
	left: 0;
}


#dernieres-chances .box:hover img {
	cursor: pointer;
}
/************ fin dernières chances ************/

/************************************/
/************ Croisières ************/
/************************************/
.hr {
	border: none;
	background-color: #ffb128;
	height: 3px;
	width: 50%; 
	margin-left: 0; 
}

.croisieres {
	padding-bottom: 10px;
}

.croisieres .prix {
	font-size: 2rem;
}

.croisieres .taxes {
	font-size: 0.75rem;
}


.croisieres .details {
	text-align: right;
	margin-right: 35px;
}

.croisieres .details button {
	padding: 5px 10px;
	font-size: 0.75rem;
	font-weight: bold;
	border: 1px solid #ddd;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	
	background: #ffdd83;
	background: -moz-linear-gradient(top,  #ffdd83 0%, #ff9e1f 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffdd83), color-stop(100%,#ff9e1f));
	background: -webkit-linear-gradient(top,  #ffdd83 0%,#ff9e1f 100%);
	background: -o-linear-gradient(top,  #ffdd83 0%,#ff9e1f 100%);
	background: -ms-linear-gradient(top,  #ffdd83 0%,#ff9e1f 100%);
	background: linear-gradient(to bottom,  #ffdd83 0%,#ff9e1f 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffdd83', endColorstr='#ff9e1f',GradientType=0 );

	-webkit-transition: opacity 1s ease-in-out;
	-o-transition: opacity 1s ease-in-out;
	-ms-transition: opacity 1s ease-in-out;
	-moz-transition: opacity 1s ease-in-out;
	transition: opacity 1s ease-in-out;
}
		
.croisieres .details button:hover { opacity: 0.5;}

.croisieres article, aside {
	display: inline-block;
	vertical-align: top;
}

.croisieres aside {
	position: relative;
	width: 155px;
	margin: 10px 15px;
}

.croisieres aside.image {
	position: relative;
	width: 155px;
	/*margin: 10px 5px;*/
}

.croisieres article {
	width: 490px;
	margin: 12px 0;
	padding: 0 40px;
	text-align: left;
	font-size: 0.875rem;
	border-left: 1px solid #000;
}

.croisieres aside img {
	border: 2px solid #ddd;
	padding: 2px;
}

.croisieres h3 {
	margin-bottom: 0;
}

/********** Fin Croisières ***********/

#haut {
	position: absolute;
	background-image: url('../images/arrow-top.jpg');
	right: 10px;
	bottom: 50px;
	width: 40px;
	height: 40px;
	outline: none;
	text-indent: -9999px;
	
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-o-border-radius: 50px;
	border-radius: 50px;
	
	opacity: 1;
	-webkit-transition: opacity 1s ease-in-out;
	-o-transition: opacity 1s ease-in-out;
	-ms-transition: opacity 1s ease-in-out;
	-moz-transition: opacity 1s ease-in-out;
	transition: opacity 1s ease-in-out;
}

#haut:hover {
	opacity: 0.5;
	cursor: pointer;
}

/************************************/
/************** Footer ************* /
/************************************/
footer {
	width: auto;

	background: rgb(46,96,176);
	background: -moz-linear-gradient(top, rgba(46,96,176,1) 0%, rgba(24,61,124,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(46,96,176,1)), color-stop(100%,rgba(24,61,124,1)));
	background: -webkit-linear-gradient(top, rgba(46,96,176,1) 0%,rgba(24,61,124,1) 100%);
	background: -o-linear-gradient(top, rgba(46,96,176,1) 0%,rgba(24,61,124,1) 100%);
	background: -ms-linear-gradient(top, rgba(46,96,176,1) 0%,rgba(24,61,124,1) 100%);
	background: linear-gradient(to bottom, rgba(46,96,176,1) 0%,rgba(24,61,124,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e60b0', endColorstr='#183d7c',GradientType=0 );
	
	font-family: sans-serif;
	font-size: 0.875rem;
	
	height: auto;
	
	padding: 20px 50px;
	color: #fff;
}

footer #adresse {
	display: inline-block;
	vertical-align: top;
	width: 45%;
}

footer article, aside {
	display: inline-block;
	vertical-align: top;
	
}

footer aside {
	position: relative;
	width: 150px;
	margin-top: 15px;
}

footer article {
	width: 220px;
	margin-left: 15px;
	text-align: left;
	margin-top: 10px;
}

footer a, ul {
	color: #fff;
	text-decoration: none;
	outline: none;
}

footer ul {
	list-style: url('../images/puce-blanche.png');
	margin-left: 15px;
}

footer a:hover {
	text-decoration: underline;
}

footer #carte {
	display: inline-block;
	vertical-align: top;
	width: 38%;
}

footer #liens {
	display: inline-block;
	vertical-align: top;
	width: 15%;
	margin-top: 10px;
}

footer #reseaux-sociaux {
	text-align: center;
	margin-bottom: 20px;
}

footer #reseaux-sociaux img {
	padding: 0 15px;
}

footer #copyright {
	margin: 0;
	text-align: center;
	font-size: 0.75rem;
}

/************************************/
/************* Les classes **********/
/************************************/ 
.img {
	text-align: center;
}

.clearFix { clear: both;}


