html {
	height: 100%;
}

body {
	font-family: Helvetica, Arial, sans-serif;
	margin: 0px;
	padding: 0px;
	height: 100%;
	min-width: 920px;
}

#slideshow, #canvas_visite {
	position: relative;
	overflow: hidden;
	height: 100%;
	margin-left: 220px;
	
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/*************** Menu ****************/
#menu {
	float: left;
	width: 220px;
	height: 100%;
	position: relative;
	z-index: 2; /* au-dessus du drawer contenu */
	background-color: white;
}

#contenu_menu {
	padding: 10px;
	padding-top: 80px;
}

#menu #selection_langue {
	margin-top: 30px;
	border-bottom: 1px dotted #aaa;
}

#menu #selection_langue, #menu nav {
	margin-left: 20px;
	width: 160px;
}

#menu nav {
	margin-top: 10px;
}

#menu a {
	text-decoration: none;
	color: black;
}

#menu a:hover, #menu a.actif {
	color: #f8006f;
}

#menu ul {
	list-style-type: none;
	padding: 0px;
}

#menu li {
	text-transform: uppercase;
	padding: 8px 0px;
}

#logo {
	width: 180px;
}

/************** Drawer contenu *************/

#drawer_contenu {
	position: absolute;
	left: 220px;
	z-index: 1; /* En-dessous du menu */
	width: 100px;
	height: 100%;
	background-color: #eee;
	overflow: auto;
}

#drawer_contenu.drawer_index {
	width: 220px; /* Taille du menu : masqué en-dessous */
	left: 0px;
}

#drawer_contenu.drawer_description {
	width: 700px;
}

#drawer_contenu.drawer_contact {
	width: 500px;
}

#drawer_contenu.drawer_visite {
	width: 250px;
}

#drawer_contenu.drawer_tarifs {
	width: 600px;
}

#drawer_contenu.drawer_disponibilite {
	width: 400px;
}

#contenu {
	padding: 10px;
	margin-top: 65px;
}

h1 {
	color: #333;
	font-weight: normal;
	font-size: 26px;
}

h2 {
	color: #666;
	font-weight: normal;
	font-size: 18px;
	border-bottom: 1px solid #666;
	padding-bottom: 5px;
}

.btn_hide_drawer {
	float: right;
	font-size: 1.2em;
	cursor: pointer;
	color: #f8006f;
}

.btn_hide_drawer:hover{
	text-decoration: underline;
}

#contenu a {
	text-decoration: underline;
	color: #666;
}

#contenu a:hover {
	text-decoration: none;
	color: #777;
}

/*************** Implémentation slider ************/

#slider {
	width: 100%;
	height: 100%;
}

#slider_controls {
	font-family: arial, sans-serif;
	position: absolute;
	right: 50px;
	bottom: 50px;
	color: #eee;
}

#slider_controls #current {
	display: inline-block; /* Pour first-letter */
	margin-right: 5px;
}

#slider_controls #current::first-letter {
	color: #f8006f;
}

#slider_controls #max {
	margin-left: 5px;
}

#slider_controls .control_arrow {
	font-size: 60px;
	cursor: pointer;
}

#slider_controls .control_arrow:hover {
	color: #f8006f;
}

#slider_controls .control_count {
	font-size: 45px;
}

/******* Implémentation visite *********/
#visite {
	overflow: hidden;
	height: 100%;
}

#visite.link_over {
	cursor: pointer;
}

#canvas_visite #label {
	position: absolute;
	display: none;
	z-index: 5;
	padding: 5px 8px;
	background-color: white;
	border: 1px solid #333;
	border-radius: 10px;
	color: #333;
}

#canvas_visite #visite_chargement {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100px;
	margin-left: -50px;
	display: none;
	z-index: 10;
}

/******* Spécifique bibliothèque slider ********/

.slider_img_wrapper {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
}

.slider_img_wrapper img {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;

	/* Modifié en JS : */
	width: 100%; 
	height: auto;
}

/******* Page tarifs *********/
#tbltarifs {
	margin: 20px 10px;
	text-align: center;
}

#tbltarifs td, #tbltarifs th {
	padding: 5px 10px;
}

#tbltarifs th {
	color: #666;
}

#tbltarifs td:first-child, #tbltarifs th:first-child {
	padding-right: 20px;
}

#tbltarifs .dates_saison {
	font-size: 0.9em;
	color: #888;
}

#footer_details_tarifs {
	margin-top: 40px;
}

/********* Page contact ********/
#drawer_contenu.drawer_contact textarea {
	width: 100%;
	height: 100px;
}

#drawer_contenu.drawer_contact .tblInfoPerso {
	margin-bottom: 20px;
}

#drawer_contenu.drawer_contact #formContact {
	padding: 15px;
}

#drawer_contenu.drawer_contact #submit_container {
	text-align: center;
}

#formContact input + label.error {
	margin-left: 10px;
}

#formContact label.error {
	color: red;
}