*{
	margin:0;
	padding:0;
}
::selection { color:#FFF; background: #312837; }
::-moz-selection { color:#FFF; background: #312837; }
body{
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:13px;
	color:rgba(49,40,55,0.85);
}
.clearfixboth{ clear:both; }
a{ outline:none; }
div.background{
	position:fixed;
	z-index:5;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	background-image:url(../img/bg_body.jpg);
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;	
}
/** BUTTON **/
a.btn-empty::after{
	position:absolute;
	z-index:-1;
	content:'';
	display:block;
	overflow:hidden;
	bottom:0px;
	left:0px;
	height:0px;
	width:100%;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;										
}
a.btn-empty.white{
	color:rgba(255,255,255,0.5);
	border:3px solid rgba(255,255,255,0.2);	
}
a.btn-empty.black{
	color:rgba(0,0,0,1);
	border:3px solid rgba(0,0,0,1);	
}
body.no-touch a.btn-empty.white:hover{
	color:rgba(33,26,38,1);
	border:3px solid rgba(255,255,255,1);	
}
body.no-touch a.btn-empty.black:hover{
	color:rgba(255,255,255,1);
	border:3px solid rgba(0,0,0,1);	
}
a.btn-empty.white::after{ background-color:#fff; }
a.btn-empty.black::after{ background-color:#000; }
body.no-touch a.btn-empty:hover::after{ height:100%; }
/** DIV.infos-box  **/
div.infos-box{
	z-index:25;
	position:fixed;
	bottom:60px;
	left:0px;
	width:270px;		
}
div.infos-box div{
	position:relative;
	margin-bottom:20px;
	padding:15px 15px 15px 75px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-style:italic;
	font-weight:normal;
	color:rgba(33,26,38,0.8);
	text-decoration:none;
	line-height:16px;
	background-color:#fff;
	border:1px solid #e8e8e9;
	visibility: hidden;
	-webkit-transition: -webkit-transform 0.5s, visibility 0s 0.5s;
	transition: transform 0.5s, visibility 0s 0.5s;
	-webkit-transform: translateX(-60%) scale(0);
	transform: translateX(-60%) scale(0);			
}
div.infos-box div.open{
	visibility: visible;
	-webkit-transform: translateX(0%) scale(1);
	transform: translateX(0%) scale(1);
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;	
}
div.infos-box div.getvisits:before{
	content:'';
	position:absolute;
	top:0px;
	left:0px;
	display:block;
	height:100%;
	width:60px;
	border-right:1px solid #e8e8e9;
	background-image:url(../img/img_info-persons.png);
	background-repeat:no-repeat;
	background-position:center;
}
div.infos-box div.getlastbooking:before{
	content:'';
	position:absolute;
	top:0px;
	left:0px;
	display:block;
	height:100%;
	width:60px;
	border-right:1px solid #e8e8e9;
	background-image:url(../img/img_info-booking.png);
	background-repeat:no-repeat;
	background-position:center;
}
div.infos-box div.message:before,
div.infos-box div.roomnext:before{
	content:'';
	position:absolute;
	top:0px;
	left:0px;
	display:block;
	height:100%;
	width:60px;
	border-right:1px solid #e8e8e9;
	background-image:url(../img/img_info-cookie.png);
	background-repeat:no-repeat;
	background-position:center;
}
div.infos-box div.message a,
div.infos-box div.roomnext a{ color:rgba(33,26,38,0.8); }
/** DIALOG **/
div.dialog-overlay{
	position:fixed;
	display:block;
	z-index:30;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	text-align:center;
	background-color:rgba(36,27,41,0.7);
	opacity:0;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;		
}
div.dialog-overlay.reviews{ display:none; }
div.dialog-overlay.open{ opacity:1; }
div.dialog-overlay div.dialog{
	position:relative;
	display:inline-block;
	vertical-align:middle;
	margin:0px;
	padding:140px 50px 60px 50px;
	width:600px;
	line-height:normal;
	text-align:center;
	background-color:#FFFFFF;
	-webkit-box-shadow:1px 1px 2px rgba(0,0,0,0.3);
	box-shadow:1px 1px 2px rgba(0,0,0,0.3);		
	visibility:hidden;
	-webkit-transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);
	-moz-transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);
	-o-transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);
	transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);
	-webkit-transform: translateY(100%);
	transform: translateY(100%);							
}
div.dialog-overlay div.dialog.reviews{ 	padding: 60px 50px; }
div.dialog-overlay div.dialog.open{
	visibility:visible;
	-webkit-transition: all 0.7s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-moz-transition: all 0.7s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-o-transition: all 0.7s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	transition: all 0.7s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-webkit-transform: translateY(0%);
	transform: translateY(0%);		
}
div.dialog-overlay div.dialog h2{
	position:relative;
	margin:0px;
	padding:0px 0px 10px 0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:22px;
	line-height:normal;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:2px;
	color:rgba(33,26,38,1);	
}
div.dialog-overlay div.dialog h2::before{
	content:'';
	position:absolute;
	top:-80px;
	left:50%;
	margin-left:-25px;
	height:50px;
	width:50px;
	background-image:url(../img/sp_footer-icon.jpg);
	background-repeat:no-repeat;
}
div.dialog-overlay div.dialog.contact h2::before{ background-position:-100px 0px; }
div.dialog-overlay div.dialog.newsletter h2::before{ background-position:-50px 0px; }
div.dialog-overlay div.dialog p{
	margin:0px;
	padding:0px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:13px;
	line-height:24px;
	font-weight:normal;
	text-decoration:none;
	color:rgba(33,26,38,0.8);	
}
div.dialog-overlay div.dialog.reviews p{ 
	font-size:11px;
	line-height:normal;
	text-align:justify;
}
div.dialog-overlay div.dialog ul{
	margin:0px;
	padding:20px;
	text-align:justify;
}
div.dialog-overlay div.dialog ul li{
	margin:0px;
	padding:0px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:13px;
	line-height:24px;
	font-weight:normal;
	text-decoration:none;
	color:rgba(33,26,38,0.8);	
}
div.dialog-overlay div.dialog.reviews ul li{ 
	line-height:normal;
	font-size:11px;
}
div.dialog-overlay div.dialog a.btn-empty{
	position:relative;
	z-index:5;
	display:inline-block;
	margin:40px 0px 0px 0px;
	padding:13px 25px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:1px;	
	text-decoration:none;			
}
div.dialog-overlay div.dialog.reviews span.vinivi{
	display:inline-block;
	margin:0px 50px 30px 50px;
	padding:0px;
	height:100px;
	width:215px;
	background-image:url(../img/img_vinivi.png);
	background-repeat:no-repeat;
	background-position:center;
	background-size:215px 100px;	
}
div.dialog-overlay div.dialog.reviews span.afnor{
	display:inline-block;
	margin:0px 50px 30px 50px;
	padding:0px;
	height:100px;
	width:133px;
	background-image:url(../img/img_afnor.png);
	background-repeat:no-repeat;
	background-position:center;
	background-size:133px 100px;	
}
/** DIV.dialog  **/
div.alert-dialog{
	display:none;
	text-align:center;
}
div.alert-dialog div.container{
	margin:5px 5px -7px 5px;
	padding:40px 50px 40px 50px;
	border:1px solid #312837;
}
div.alert-dialog.infos div.container{ padding:30px; }
div.alert-dialog.infos a.close{
	position:absolute;
	top:1px;
	right:6px;
	display:block;
	margin:0px;
	padding:0px;
	height:50px;
	width:50px;
	background-image:url(../img/sp_close-popup.jpg);
	background-repeat:no-repeat;		
}
div.alert-dialog.infos a.close:hover{ background-position:-50px 0px; }
div.alert-dialog.infos span.spot{
	display:inline-block;
	margin:0px 0px 10px 0px;
	padding:0px;
	height:55px;
	width:55px;
	background-image:url(../img/img_spot.jpg);
	background-repeat:no-repeat;		
}
div.alert-dialog h2{
	margin:0px 0px 10px 0px;
	padding:0px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:25px;
	font-weight:400;
	line-height:27px;
	color:#312837;
	text-transform:uppercase;
}
div.alert-dialog h3{
	margin:12px 0px 12px 0px;
	padding:0px;
	font-family:'Libre Baskerville', Arial, Helvetica, sans-serif;
	font-size:18px;
	font-weight:normal;
	font-style:italic;
	line-height:22px;
	color:#c99e61;
}
div.alert-dialog p{
	margin:0px;
	padding:12px 0px;
	color:#7c7c7c;
}
div.alert-dialog.infos p{ text-align:justify; }
div.alert-dialog a.dialog-links{
	display:block;
	margin:15px 0px;
	padding:0px;
	color:#241e20;
	text-align:center;
	text-decoration:underline;
}
div.alert-dialog a.dialog-links:hover{ text-decoration:none; color:#312837; }
div.alert-dialog table{
	margin-top:30px;
	border-bottom:1px solid #bebebe;
}
div.alert-dialog table td{
	margin:0px;
	padding:10px 20px;
	width:50%;
	text-align:left;
	font-size:13px;
	color:#4c4c4c;
	border-top:1px solid #bebebe;
	border-left:1px solid #bebebe;
}
div.alert-dialog table td.grey{
	color:#777777;
	border-right:1px solid #bebebe;
}
/** SIDE TITLE **/
div.side-title-left,
div.side-title-right{
	position:fixed;
	top:500px;
	z-index:25;
	font-family:'Lato', Arial, Helvetica, sans-serif;
	font-style:normal;
	font-size:9px;
	color:#fff;
	text-transform:uppercase;
	letter-spacing:4px;
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: easeOutQuart;
    transition-timing-function: easeOutQuart;				
}
div.side-title-left{
	left:0px;
	margin-left:-130px;
	-webkit-transform:rotate(-90deg) translateY(-100px);
	transform:rotate(-90deg) translateY(-100px);	
}
div.side-title-right{
	right:0px;
	margin-right:-130px;
	-webkit-transform:rotate(90deg) translateY(-100px);
	transform:rotate(90deg) translateY(-100px);	
}
div.side-title-left.show{
	-webkit-transform:rotate(-90deg) translateY(0%);
	transform:rotate(-90deg) translateY(0%);	
}
div.side-title-right.show{
	-webkit-transform:rotate(90deg) translateY(0%);
	transform:rotate(90deg) translateY(0%);
}
div.side-title-left::after,
div.side-title-right::after,
div.side-title-left::before,
div.side-title-right::before{
	content:'';
	position:absolute;
	top:50%;
	height:1px;
	width:50px;
	background-color:#FFFFFF;
}
div.side-title-left::after,
div.side-title-right::after{ left:-75px; }
div.side-title-left::before,
div.side-title-right::before{ right:-75px; }
/**  ALERT **/
div.content div.alert{
	position:absolute;
	z-index:5;
	top:0px;
	left:0px;
	right:0px;
	margin:0px;
	padding:18px 80px 18px 80px;
	font-size:12px;		
}
div.content div.alert.hide{
	visibility: hidden;
	-webkit-transition: -webkit-transform 0.5s, visibility 0s 0.5s;
	transition: transform 0.5s, visibility 0s 0.5s;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
div.content div.alert span {
	position:absolute;
	top:50%;
	left:35px;
	display:block;
	margin:-12px 0px 0px 0px;
	padding:0px;
	height:24px;
	width:24px;
	background-image:url(../img/img_error-form-white.png);
	background-repeat:no-repeat;
}
div.content div.alert p {
	margin:0px;
	padding:0px;
	color: #fff;
	text-align:left;
	line-height:normal;	
}
div.content div.alert a.close {
	position:absolute;
	top:16px;
	right:35px;
	display:block;
	margin:0px;
	height:22px;
	width:22px;
}
div.content div.alert a.close:before,
div.content div.alert a.close:after{
	content:'';
	position:absolute;
	top:50%;
	left:0px;
	display:block;
	width:25px;
	height:1px;
	background-color:#fff;
}
div.content div.alert a.close:before { 
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
}
div.content div.alert a.close:after { 
	-webkit-transform: translateY(0) rotate(-45deg);
	transform: translateY(0) rotate(-45deg);
}
div.content div.alert-error {
	background-color: #d6bcad;
	border-color: #d6bcad;
}
/** CONTAINER **/
div#container{
	position:relative;
	z-index:15;
	margin:0px auto;
	padding:0px 5%;
	background-color:transparent;
}
@media screen and (min-width: 1930px) {
	div#container{ width:1700px; }
}
/** HEADER **/
div.header{
	position:relative;
	margin:0px;
	padding:0px;
	height:97px;
}
div.header header.topbar{
	position:fixed;
	bottom:10px;
	z-index:10;
	left:5%;
	right:5%;
	margin:0px;
	padding:0px;
	height:37px;
	border-top:1px solid rgba(255,255,255,0.2);
	display: block;
}
div.header header.topbar div.side-left{
	float:left;
	margin:0px;
	padding:0px;
}
div.header header.topbar div.side-left p,
div.header header.topbar div.side-left a,
div.header header.topbar div.side-left span{
	float:left;
	display:inline-block;
	margin:12px 0px 0px 0px;
	padding:0px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-style:italic;
	font-weight:normal;
	color:rgba(255,255,255,0.6);
	text-decoration:none;
	line-height:12px;	
}
div.header header.topbar div.side-left p{ margin-right:5px; }
div.header header.topbar div.side-left a{ margin-right:10px; }
div.header header.topbar div.side-left a.number{ font-size:12px; }
div.header header.topbar div.side-left a.number,
div.header header.topbar div.side-left p.bold{ 
	font-weight:700;
	color:rgba(255,255,255,1);
}
div.header header.topbar div.side-left a.number,
div.header header.topbar div.side-left span{	
	font-family:'Lato', Arial, Helvetica, sans-serif;
	font-style:normal;
}
div.header header.topbar div.side-right{
	float:right;
	margin:0px;
	padding:0px;
}
div.header header.topbar div.side-right a{
	position:relative;
	overflow:hidden;
	float:left;
	display:block;	
	margin:12px 0px 0px 25px;
	padding:0px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-style:italic;
	font-weight:normal;
	text-decoration:none;			
}
div.header header.topbar div.side-right a.language{ padding-left:25px; padding-right:13px;}
div.header header.topbar div.side-right a.language img{
	position:absolute;
	top:-1px;
	left:0px;
}
div.header header.topbar div.side-right a.currency{ padding-right:13px; }
div.header header.topbar div.side-right a.language:before,
div.header header.topbar div.side-right a.currency:before{
	content:'';
	position:absolute;
	top:5px;
	right:0px;
	height:3px;
	width:5px;
	background-image:url(../img/img_topbar-arrow.png);
	background-repeat:no-repeat;	
}
div.header header.topbar div.side-right a span{
	position:relative;
	left:0px;
	top:0px;	
	display:block;	
	color:rgba(255,255,255,0.6);
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: easeOutQuart;
    transition-timing-function: easeOutQuart;		
}
body.no-touch div.header header.topbar div.side-right a:hover span{
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
div.header header.topbar div.side-right a span:after{
	position:absolute;
	left:0px;
	top:0px;	
	display:block;	
	content: attr(data-hover);
	color:rgba(255,255,255,1);	
	-webkit-transform: translateY(100%);
	transform: translateY(100%);	
}
div.header header.banner{
	position:relative;
	margin:0px;
	padding:0px;
	height:100%;
	width:100%;
}
div.header header.banner a.logo{
	position:fixed;
	z-index:10;
	top:50%;
	left:50%;
	margin:-140px 0px 0px -170px;
	padding:0px;
	height:214px;
	width:340px;
	background-image:url(../img/img_logo.png);
	background-repeat:no-repeat;	
}


/*fleche diaporama à droite*/
header.diaporama a.play-droite{
	position:absolute;
	z-index:10;
	top:50%;
	right:1%;
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:normal;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:0.5px;
	color:rgba(255,255,255,0.5);
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;		
}

header.diaporama a.play-droite div{
	position:relative;
	overflow:hidden;
	display:block;
	top:-18px;
	right:12px;
	margin:0px;
	padding:0px;
	height:45px;
	width:45px;
	border:3px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);									
}
header.diaporama a.play-droite span.mask{
	position:relative;
	overflow:hidden;
	display:block;
	top:50%;
	left:50%;
	margin:-16px 0px 0px -3px;
	height:18px;
	width:18px;	
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: easeOutQuart;
    transition-timing-function: easeOutQuart;											
}
header.diaporama a.play-droite span.mask.second{
	-webkit-transform: rotate(-45deg) translate(0%,50px);
	transform: rotate(-45deg) translate(0%,50px);
	margin: -18px 0px 0px -3px;
}
header.diaporama a.play-droite:hover span.mask.first{
	-webkit-transform: rotate(-45deg) translate(0%,-50px);
	transform: rotate(-45deg) translate(0%,-50px);	
}
header.diaporama a.play-droite:hover span.mask.second{
	-webkit-transform: rotate(-45deg) translate(0%,0%);
	transform: rotate(-45deg) translate(0%,0%);	
}
header.diaporama a.play-droite span.mask span.triangle{
	position:relative;
	display:block;
	top:50%;
	left:-6px;
	margin:-6px 0px 0px 0px;
	height:12px;
	width:12px;	
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	background-color:#FFFFFF;					
}


/*Fleche diaporama à gauche*/

header.diaporama a.play-gauche{
	position:absolute;
	z-index:10;
	top:50%;
	left:1%;
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 22px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:normal;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:0.5px;
	color:rgba(255,255,255,0.5);
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
}

header.diaporama a.play-gauche div{
	position:relative;
	overflow:hidden;
	display:block;
	top:-18px;
	right:12px;
	margin:0px;
	padding:0px;
	height:45px;
	width:45px;
	border:3px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
header.diaporama a.play-gauche span.mask{
	position:relative;
	overflow:hidden;
	display:block;
	top:50%;
	left:50%;
	margin:-4px 0px 0px -13px;
	height:18px;
	width:18px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: easeOutQuart;
	transition-timing-function: easeOutQuart;
}
header.diaporama a.play-gauche span.mask.second{
	-webkit-transform: rotate(135deg) translate(0%,50px);
	transform: rotate(135deg) translate(0%,50px);
	margin: -18px 0px 0px -13px;
}
body.no-touch header.diaporama a.play-gauche:hover span.mask.first{
	-webkit-transform: rotate(135deg) translate(0%,-50px);
	transform: rotate(135deg) translate(0%,-50px);
}
body.no-touch header.diaporama a.play-gauche:hover span.mask.second{
	-webkit-transform: rotate(135deg) translate(0%,0%);
	transform: rotate(135deg) translate(0%,0%);
}
header.diaporama a.play-gauche span.mask span.triangle{
	position:absolute;
	display:block;
	top:50%;
	left:-6px;
	margin:-6px 0px 0px 0px;
	height:12px;
	width:12px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	background-color:#FFFFFF;
}



div.header header.banner p.explorer{
	position:fixed;
	z-index:10;
	bottom:100px;
	left:50%;
	margin:0px 0px 0px -65px;
	padding:0px;
	width:130px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	text-decoration:none;
	text-transform:uppercase;
	text-align:center;
	letter-spacing:0.5px;
	color:rgba(255,255,255,0.5);	
}
div.header header.banner p.explorer::after{
	position:absolute;
	bottom:-7px;
	left:0px;
	content:'';
	height:1px;
	width:100%;
	background-color:rgba(255,255,255,0.2);	
}
div.header header.banner p.explorer span{
	position:absolute;
	left:50%;
	top:-55px;
	display:block;
	margin-left:-8px;
	height:30px;
	width:16px;
	border:2px solid rgba(255,255,255,0.4);
	-webkit-border-radius: 9px;
    border-radius: 9px;		
}
div.header header.banner p.explorer span::after{
	position:absolute;
	top:6px;
	left:50%;
	content:'';
	margin-left:-2px;
	height:8px;
	width:4px;
	background-color:rgba(255,255,255,0.4);	
	-webkit-border-radius: 9px;
    border-radius: 9px;	
	-webkit-animation: scrolling 0.5s alternate infinite;
	animation: scrolling 0.5s alternate infinite;
}
@-webkit-keyframes scrolling /* Safari and Chrome */ {
  from {
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
  }
  to {
	-webkit-transform: translateY(3px);
	transform: translateY(3px);
  }
}
@keyframes scrolling {
  from {
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
  }
  to {
	-webkit-transform: translateY(3px);
	transform: translateY(3px);
  }
}
div.header header.banner div#slideshow{
	position:fixed;
	z-index:5;
	top:0px;
	left:0px;
	height:auto;
	width:auto;
}
div.header header.banner a.content-push{
	position:fixed;
	z-index:10;
	top:60px;
	right:5%;
	display:block;
	margin:0px;
	padding:0px;
	height:140px;
	width:390px;
	border:1px solid rgba(255,255,255,0.2);
}
div.header header.banner a.content-push div.image{
	position:absolute;
	top:8px;
	bottom:8px;
	left:8px;
	right:55%;
	background-position:center;
	background-size:cover;
}
div.header header.banner a.content-push div.text{
	position:absolute;
	overflow:auto;
	top:8px;
	bottom:8px;
	right:8px;
	left:35%;
	padding:15px;
	background-color:#f2f1f3;
	background-image:url(../img/bg_pattern-grey.jpg);
	background-repeat:repeat;
}
div.header header.banner a.content-push div.text h2{
	position:relative;
	margin:0px 0px 33px 0px;
	padding:0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:18px;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:2px;
	color:rgba(33,26,38,1);	
}
div.header header.banner a.content-push div.text h2::after{
	content:'';
	position:absolute;
	bottom:-15px;
	left:0px;
	height:3px;
	width:50px;
	background-color:rgba(33,26,38,1);
}
div.header header.banner a.content-push div.text p{
	margin:0px;
	padding:0px 0px 15px 0px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:20px;
	font-weight:normal;
	text-decoration:none;
	text-align:justify;
	color:rgba(33,26,38,0.8);	
}
/** HEADER ERROR **/
div.header header.banner.error div.error-container{
	position:fixed;
	z-index:10;
	top:50%;
	left:50%;
	margin:-200px 0px 0px -300px;
	padding:0px;
	height:400px;
	width:600px;
	text-align:center;	
}
div.header header.banner.error div.error-container span.error400,
div.header header.banner.error div.error-container span.error500{
	display:block;
	margin:0px auto;
	padding:0px;
	height:259px;
	width:259px;
	background-repeat:no-repeat;
	background-position:center;	
}
div.header header.banner.error div.error-container span.error400{ background-image:url(../img/img_error-400.png); }
div.header header.banner.error div.error-container span.error500{ background-image:url(../img/img_error-500.png); }
div.header header.banner.error div.error-container h2{
	position:relative;
	margin:50px 0px 0px 0px;
	padding:0px 0px 3px 0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:22px;
	line-height:normal;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:1px;
	color:rgba(255,255,255,1);	
}
div.header header.banner.error div.error-container p{
	position:relative;
	margin:0px;
	padding:0px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:13px;
	line-height:normal;
	font-weight:normal;
	text-decoration:none;
	color:rgba(255,255,255,0.5);	
}
/** MENU **/
div.nav-menu{
	position:relative;
	z-index:25;
	margin:-60px 0px 0px 0px;
	padding:0px;
}
@media screen and (min-width: 1930px) {
	div.nav-menu{ width:1700px; }
}
div.nav-menu.fixed{
	position:fixed;
	top:0px;
	margin:0px;
	left:5%;
	right:5%;	
}

div.nav-menu nav.nav-menu{
	position:relative;
	margin:0px;
	padding:0px;
	height:60px;
	background-color:#f2f1f3;
}
div.nav-menu nav.nav-menu a.hamb{
	position:absolute;
	top:0px;
	left:0px;
	display:none;
	margin:0px;
	padding:24px 0px 0px 65px;
	height:36px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:normal;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:0.5px;		
}
@media screen and (max-width: 1250px) { 
	body.us div.nav-menu nav.nav-menu a.hamb{ display:block; }
	body.jp div.nav-menu nav.nav-menu a.hamb{ display:block; }
}
@media screen and (max-width: 1350px) { 
	body.fr div.nav-menu nav.nav-menu a.hamb{ display:block; }
	body.de div.nav-menu nav.nav-menu a.hamb{ display:block; }
	body.br div.nav-menu nav.nav-menu a.hamb{ display:block; }
}
@media screen and (max-width: 1400px) {	body.it div.nav-menu nav.nav-menu a.hamb{ display:block; } }
@media screen and (max-width: 1450px) {	body.es div.nav-menu nav.nav-menu a.hamb{ display:block; } }
div.nav-menu nav.nav-menu a.hamb span.icon{
	position:absolute;
	top:50%;
	left:25px;
	display:block;
	margin-top:0px;
	width:25px;
	height:2px;
	background-color:rgba(33,26,38,0.7);
	-webkit-transition: transform;
	-webkit-transition-duration: 0.5s;
	-webkit-transform:translateY(-50%);
	transition: transform;
	transition-duration: 0.5s;
	transform:translateY(-50%);
}
div.nav-menu nav.nav-menu a.hamb span.icon:before,
div.nav-menu nav.nav-menu a.hamb span.icon:after{
	content:'';
	position:absolute;
	top:0px;
	left:0px;
	display:block;
	width:25px;
	height:2px;
	background-color:rgba(33,26,38,0.7);
	-webkit-transition: transform;
	-webkit-transition-duration: 0.2s;
	transition: transform;
	transition-duration: 0.2s;
}
div.nav-menu nav.nav-menu a.hamb span.icon:before{ 
	-webkit-transform:translateY(-6px);
	transform:translateY(-6px);
}
div.nav-menu nav.nav-menu a.hamb span.icon:after{
	-webkit-transform:translateY(6px);
	transform:translateY(6px);
}
body.no-touch div.nav-menu nav.nav-menu a.hamb:hover span.icon { background-color:rgba(33,26,38,1); }
body.no-touch div.nav-menu nav.nav-menu a.hamb:hover span.icon::before {
	background-color:rgba(33,26,38,1);  
	-webkit-transform:translateY(-8px);
	transform:translateY(-8px);
}
body.no-touch div.nav-menu nav.nav-menu a.hamb:hover span.icon::after { 
	background-color:rgba(33,26,38,1); 
	-webkit-transform:translateY(8px);
	transform:translateY(8px);
}
div.nav-menu nav.nav-menu a.hamb span.container{
	display:inline-block;
	overflow:hidden;	
}
div.nav-menu nav.nav-menu a.hamb span.container span.hover{
	position:relative;
	left:0px;
	top:0px;	
	display:block;	
	color:rgba(33,26,38,0.7);
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: easeOutQuart;
    transition-timing-function: easeOutQuart;		
}
body.no-touch div.nav-menu nav.nav-menu a.hamb:hover span.container span.hover{
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
div.nav-menu nav.nav-menu a.hamb span.container span.hover:after{
	position:absolute;
	left:0px;
	top:0px;	
	display:block;	
	content: attr(data-hover);
	color:rgba(33,26,38,1);	
	-webkit-transform: translateY(100%);
	transform: translateY(100%);	
}
div.nav-menu nav.nav-menu a.booking{
	position:absolute;
	overflow:hidden;
	top:0px;
	right:0px;
	display:block;
	margin:0px;
	padding:24px 10px 0px 50px;
	height:36px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:normal;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:0.5px;
	background-color:#312837;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;			
}

@media (min-width: 1367px) {
	div.nav-menu nav.nav-menu a.booking{
		padding:24px 30px 0px 100px;
	}
}

body.no-touch div.nav-menu nav.nav-menu a.booking:hover{ background-color:#3c3343; }
div.nav-menu nav.nav-menu a.booking span.border{
	position:absolute;
	top:-42px;
	left:-55px;
	display:block;
	width:90px;
	height:90px;
	background-color:#f2f1f3;
	-webkit-transform:rotate(42deg);
	transform:rotate(42deg);
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;			
}
body.no-touch div.nav-menu nav.nav-menu a.booking:hover span.border{
	top:-20px;
	left:-55px;
	-webkit-transform:rotate(0deg);
	transform:rotate(0deg);	
}
div.nav-menu nav.nav-menu a.booking span.icon{
	position:absolute;
	top:50%;
	left:70px;
	display:none;
	margin-top:-10px;
	width:18px;
	height:19px;
	background-image:url(../img/img_calandar.png);
	background-repeat:no-repeat;
}

@media (min-width: 1367px) {
	div.nav-menu nav.nav-menu a.booking span.icon{
		display:block;
	}
}
/*div.nav-menu nav.nav-menu a.booking span.icon_information1{*/
div.nav-menu nav.nav-menu span.icon_information1{
	position:absolute;
	top:50%;
	right:350px;
	display:block;
	margin-top:-9px;
	width:18px;
	height:19px;
	background-image:url(../img/img_information_noir.png);
	background-repeat:no-repeat;
}
div.nav-menu nav.nav-menu a.booking span.container{
	display:inline-block;
	overflow:hidden;	
}
div.nav-menu nav.nav-menu a.booking span.container span.hover{
	position:relative;
	left:0px;
	top:0px;	
	display:block;	
	color:#fff;
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: easeOutQuart;
    transition-timing-function: easeOutQuart;		
}
body.no-touch div.nav-menu nav.nav-menu a.booking:hover span.container span.hover{
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
div.nav-menu nav.nav-menu a.booking span.container span.hover:after{
	position:absolute;
	left:0px;
	top:0px;	
	display:block;	
	content: attr(data-hover);	
	-webkit-transform: translateY(100%);
	transform: translateY(100%);	
}
div.nav-menu nav.nav-menu div.left{
	position:absolute;
	top:0px;
	left:10px;
}
@media screen and (max-width: 1250px) { 
	body.us div.nav-menu nav.nav-menu div.left{ display:none; }
	body.jp div.nav-menu nav.nav-menu div.left{ display:none; }
}
@media screen and (max-width: 1350px) {	
	body.fr div.nav-menu nav.nav-menu div.left{ display:none; }
	body.de div.nav-menu nav.nav-menu div.left{ display:none; }
	body.br div.nav-menu nav.nav-menu div.left{ display:none; }
}
@media screen and (max-width: 1400px) {	body.it div.nav-menu nav.nav-menu div.left{ display:none; } }
@media screen and (max-width: 1450px) {	body.es div.nav-menu nav.nav-menu div.left{ display:none; } }
div.nav-menu nav.nav-menu div.left a{
	display:inline-block;
	margin:0px 10px;
	padding:24px 0px 0px 0px;
	height:36px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:normal;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:0.5px;	
}
@media (min-width: 1441px) {
	/*div.nav-menu nav.nav-menu div.left a{
		margin:0px 15px;
	}*/
}
div.nav-menu nav.nav-menu div.left a span.container{
	display:inline-block;
	overflow:hidden;	
}
div.nav-menu nav.nav-menu div.left a span.container span.hover{
	position:relative;
	left:0px;
	top:0px;	
	display:block;	
	color:rgba(33,26,38,0.7);
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: easeOutQuart;
    transition-timing-function: easeOutQuart;		
}
body.page-1 div.nav-menu nav.nav-menu div.left a.page-1 span.container span.hover,
body.rooms div.nav-menu nav.nav-menu div.left a.rooms span.container span.hover,
body.page-3 div.nav-menu nav.nav-menu div.left a.page-3 span.container span.hover,
body.page-4 div.nav-menu nav.nav-menu div.left a.page-4 span.container span.hover,
body.photos div.nav-menu nav.nav-menu div.left a.photos span.container span.hover,
body.offers div.nav-menu nav.nav-menu div.left a.offers span.container span.hover,
body.posts div.nav-menu nav.nav-menu div.left a.posts span.container span.hover,
body.google_maps div.nav-menu nav.nav-menu div.left a.google_maps span.container span.hover,
body.contact div.nav-menu nav.nav-menu div.left a.contact span.container span.hover,
body.no-touch div.nav-menu nav.nav-menu div.left a:hover span.container span.hover{
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
div.nav-menu nav.nav-menu div.left a span.container span.hover:after{
	position:absolute;
	left:0px;
	top:0px;	
	display:block;	
	content: attr(data-hover);
	color:rgba(33,26,38,1);	
	-webkit-transform: translateY(100%);
	transform: translateY(100%);	
}
/** CONTENT **/
div.content{
	position:relative;
	z-index:20;	
	margin:0px 0px 140px 0px;
	padding:0px;
	background-color:#FFFFFF;
	-webkit-box-shadow:1px 1px 2px rgba(0,0,0,0.3);
	box-shadow:1px 1px 2px rgba(0,0,0,0.3);	
}
/** CONTENT : HEADER TOP **/
div.content header.content-top{
	position:relative;
	margin:0px;
	padding:0px;
	height:790px;
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
div.content header.content-top.cookies{ background-image:url(../img/header/bg_header-cookies.jpg); }
div.content header.content-top.mentions{ background-image:url(../img/header/bg_header-mentions.jpg); }
div.content header.content-top.browsers{ background-image:url(../img/header/bg_header-browsers.jpg); }
div.content header.content-top.contact{ background-image:url(../img/header/bg_header-contact.jpg); }
div.content header.content-top.newsletter{ background-image:url(../img/header/bg_header-newsletter.jpg); }
div.content header.content-top.reviews{ background-image:url(../img/header/bg_header-reviews.jpg); }
div.content header.content-top.access{ background-image:url(../img/header/bg_header-access.jpg); }
div.content header.content-top.hotel{ background-image:url(../img/header/bg_header-hotel.jpg); }
div.content header.content-top.wellness{ background-image:url(../img/header/bg_header-wellness.jpg); }
div.content header.content-top.tea{ background-image:url(../img/header/bg_header-tea.jpg); }
div.content header.content-top.rooms{ background-image:url(../img/header/bg_header-rooms.jpg); }
div.content header.content-top.faqs{ background-image:url(../img/header/bg_header-faqs.jpg); }
div.content header.content-top.offers{ background-image:url(../img/header/bg_header-offers.jpg); }
div.content header.content-top::before{
	position:absolute;
	content:'';
	top:0px;
	bottom:0px;
	right:0px;
	left:0px;
	background-color:rgba(76,67,72,0.15);
}
div.content header.content-top a.btn-purple{
	position:absolute;
	right:30px;
	bottom:30px;
	z-index:5;
	display:inline-block;
	margin:0px;
	padding:13px 25px;
	width:auto;
	color:#3c3343;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:1px;	
	text-decoration:none;
	background-color:#fff;
	border:3px solid #fff;	
}
/** CONTENT : ARTICLE **/
div.content article{
	margin:0px;
	padding:0px;
	background-color:#f2f1f3;
	background-image:url(../img/bg_pattern-grey.jpg);
	background-repeat:repeat;	
}
div.content article div.white{
	margin:0px;
	padding:0px;
	background-color:#fff;
	border-top:1px solid #e8e8e9;
}
div.content article div.middle{
	margin:0px auto;
	padding:90px 0px 60px 0px;
	width:880px;
}
div.content article div.side-left,
div.content article div.side-right{
	float:left;
	margin:0px;
	padding:0px;
	width:50%;
}
div.content article div.side-left{
	padding:0px 10% 0px 0px;
	width:40%;
}
@media screen and (max-width: 1250px) {
	div.content article div.side-left{
		padding:0px 5%;
		width:40%;
	}
	div.content article div.side-right{
		padding:0px 5% 0px 0px;
		width:45%;
	}
}

div.content article th1  {
	position:relative;
	margin:0px;
	padding:0px 0px 25px 0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:22px;
	line-height:normal;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:2px;
	color:rgba(33,26,38,1);
}
div.content article h1.lemag{
	position:relative;
	margin:0px;
	padding:0px 0px 0px 0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:22px;
	line-height:normal;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:2px;
	color:rgba(33,26,38,1);
}



div.content article h2 ,div.content article h1.offre {
	position:relative;
	margin:0px;
	padding:0px 0px 25px 0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:22px;
	line-height:normal;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:2px;
	color:rgba(33,26,38,1);	
}
div.content article h3{
	position:relative;
	margin:0px;
	padding:0px 0px 15px 0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:15px;
	line-height:normal;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:2px;
	color:rgba(33,26,38,1);	
}
div.content article h1{
	margin: 0px;
	padding: 0px 0px 0px 0px;
	font-family: 'Merriweather', Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 24px;
	font-weight: normal;
	text-decoration: none;
	text-align: left;
	color: rgba(33,26,38,0.8);
	display: block;

}
div.content article h1.room {
	height: 24px;
}
div.content article p.th1{
	margin: 0px;
	padding: 50px 0px 30px 0px;
	font-family: 'Merriweather',Arial,Helvetica,sans-serif;
	font-size: 13px;
	line-height: 24px;
	font-weight: 700;
	text-decoration: none;
	text-align: justify;
	color: rgba(33,26,38,0.8);
}


div.content article p{
	margin:0px;
	padding:0px 0px 30px 0px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:13px;
	line-height:24px;
	font-weight:normal;
	text-decoration:none;
	text-align:justify;
	color:rgba(33,26,38,0.8);	
}
div.content article p.h1 , div.content article h1.h1{
	position:relative;
	margin:0px 0px 0px 0px;
	padding:0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:38px;
	line-height:48px;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:2px;
	color:rgba(33,26,38,1);
	text-align : left;



}
div.content article p.h1::after{
	content:'';
	position:absolute;
	bottom:-40px;
	left:0px;
	height:5px;
	width:50px;
	background-color:rgba(33,26,38,1);
	font-size:38px;
	line-height:48px;
	font-weight:700;
}

/** CONTENT : COOKIES **/
div.content article.cookies div.white div.side-right{ text-align:center; }
div.content article a.cookie-consent-link{
	position:relative;
	display:inline-block;
	margin:10px 0px 0px 0px;
	padding:0px;
	height:71px;
	width:70px;	
}
div.content article a.cookie-consent-link.locked{ background-image:url(../img/img_cookies-lock.png); }
div.content article a.cookie-consent-link.analytics{ background-image:url(../img/img_cookies-empty.png); }
div.content article a.cookie-consent-link span{
	position:absolute;
	left:0px;
	top:28px;
	display:none;
	margin:0px;
	padding:0px;
	height:auto;
	width:70px;	
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:normal;
	font-weight:700;
	text-transform:uppercase;
	text-align:center;
	letter-spacing:1px;
	color:rgba(33,26,38,1);		
}
/** CONTENT : MENTIONS **/
div.content article.mentions div.white{
	padding-bottom:30px;
	text-align:center;
}
div.content article.mentions div.white p{ 
	padding:0px 0px 0px 0px;
	text-align:center;
}
/** CONTENT : BROWSERS **/
div.content article div.container-browser-link{
	margin:30px 0px 30px 0px;
	padding:0px;	
}
div.content article div.container-browser-link a.browser-link{
	display:inline-block;
	margin:0px 20px 0px 0px;
	padding:0px;
	height:71px;
	width:70px;	
}
div.content article div.container-browser-link a.browser-link.firefox{ background-image:url(../img/img_browsers-firefox.png); }
div.content article div.container-browser-link a.browser-link.ie{ background-image:url(../img/img_browsers-ie.png); }
div.content article div.container-browser-link a.browser-link.chrome{ background-image:url(../img/img_browsers-chrome.png); }
div.content article div.container-browser-link a.browser-link.safari{ background-image:url(../img/img_browsers-safari.png); }
/** CONTENT : CONTACT **/
div.content article.contact div.side-left p{ font-weight:700; }
div.content article.contact div.side-left a{
	color:rgba(33,26,38,0.8);
	font-weight:700;
	text-decoration:none;
}
div.content article.contact div.form-part div.side-left{
	position:relative;
	height:790px;
	background-image:url(../img/bg_content-contact.jpg);
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;	
}
@media screen and (max-width: 1500px) {
	div.content article.contact div.form-part div.side-left{ display:none; }
}
div.content article.contact div.form-part div.side-left::before{
	position:absolute;
	content:'';
	top:0px;
	bottom:0px;
	right:0px;
	left:0px;
	background-color:rgba(76,67,72,0.2);
}
@media screen and (max-width: 1500px) {
	div.content article.contact div.form-part div.side-right{ 
		height:790px;
		width:100%;
	}
}
div.content article.contact div.form-part div.side-right div.center{
	margin:110px auto 0px auto;
	padding:0px;
	width:400px;
}
div.content article.contact div.form-part div.side-right div.center h2{ position:relative; }
div.content article.contact div.form-part div.side-right div.center h2::before{
	position:absolute;
	content:'';
	top:50%;
	left:-100px;
	display:block;
	margin-top:-47px;
	height:71px;
	width:70px;
	background-image:url(../img/img_contact-write.png);
	background-repeat:no-repeat;
	background-position:center;
}
div.content article.contact div.form-part div.side-right div.center form{
	margin:0px;
	padding:0px;
	width:100%;	
}
div.content article.contact div.form-part div.side-right div.center form div.input{
	position:relative;
	margin:0px 0px 20px 0px;
	padding:0px;
}
div.content article.contact div.form-part div.side-right div.center form div.input span.icon-error{
	position:absolute;
	z-index:5;
	top:50%;
	right:0px;
	margin-top:-12px;
	height:24px;
	width:24px;
	background-image:url(../img/img_error-form.png);
	background-repeat:no-repeat;
	background-position:right center;
}
div.content article.contact div.form-part div.side-right div.center form div.input.textarea span.icon-error{ top:30px; }
div.content article.contact div.form-part div.side-right div.center form div.input div.error-message{ display:none; }
div.content article.contact div.form-part div.side-right div.center form div.input input[type=text],
div.content article.contact div.form-part div.side-right div.center form div.input input[type=email],
div.content article.contact div.form-part div.side-right div.center form div.input textarea{
	position:relative;
	margin:0px;
	padding:20px 60px;
	height:auto;
	width:296px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	text-align:left;
	color:rgba(33,26,38,1);
	background-color:#fff;
	border:1px solid #d3d1d4;
	outline-style: none;
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	background-repeat:no-repeat;
	background-position:20px center;			
}
div.content article.contact div.form-part div.side-right div.center form div.input input[type=text]::-webkit-input-placeholder{  color:rgba(33,26,38,0.5); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input input[type=text]::-moz-placeholder{  color:rgba(33,26,38,0.5); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input input[type=text]:-ms-input-placeholder{  color:rgba(33,26,38,0.5); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input input[type=text]:-moz-placeholder{  color:rgba(33,26,38,0.5); text-transform:uppercase; } 
div.content article.contact div.form-part div.side-right div.center form div.input.error input[type=text]::-webkit-input-placeholder{  color:rgba(214,188,173,1); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input.error input[type=text]::-moz-placeholder{  color:rgba(214,188,173,1); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input.error input[type=text]:-ms-input-placeholder{  color:rgba(214,188,173,1); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input.error input[type=text]:-moz-placeholder{  color:rgba(214,188,173,1); text-transform:uppercase; } 
div.content article.contact div.form-part div.side-right div.center form div.input input[type=email]::-webkit-input-placeholder{  color:rgba(33,26,38,0.5); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input input[type=email]::-moz-placeholder{  color:rgba(33,26,38,0.5); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input input[type=email]:-ms-input-placeholder{  color:rgba(33,26,38,0.5); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input input[type=email]:-moz-placeholder{  color:rgba(33,26,38,0.5); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input.error input[type=email]::-webkit-input-placeholder{  color:rgba(214,188,173,1); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input.error input[type=email]::-moz-placeholder{  color:rgba(214,188,173,1); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input.error input[type=email]:-ms-input-placeholder{  color:rgba(214,188,173,1); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input.error input[type=email]:-moz-placeholder{  color:rgba(214,188,173,1); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input textarea::-webkit-input-placeholder{  color:rgba(33,26,38,0.5); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input textarea::-moz-placeholder{  color:rgba(33,26,38,0.5); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input textarea:-ms-input-placeholder{  color:rgba(33,26,38,0.5); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input textarea:-moz-placeholder{  color:rgba(33,26,38,0.5); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input.error textarea::-webkit-input-placeholder{  color:rgba(214,188,173,1); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input.error textarea::-moz-placeholder{  color:rgba(214,188,173,1); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input.error textarea:-ms-input-placeholder{  color:rgba(214,188,173,1); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input.error textarea:-moz-placeholder{  color:rgba(214,188,173,1); text-transform:uppercase; }
div.content article.contact div.form-part div.side-right div.center form div.input textarea{
	height:120px;
	background-position:20px 20px;
	resize: none;
}
div.content article.contact div.form-part div.side-right div.center form div.input input[type=text]{ background-image:url(../img/img_contact-name.png); }
div.content article.contact div.form-part div.side-right div.center form div.input.error input[type=text]{ background-image:url(../img/img_contact-name-error.png); }
div.content article.contact div.form-part div.side-right div.center form div.input input[type=email]{ background-image:url(../img/img_contact-email.png); }
div.content article.contact div.form-part div.side-right div.center form div.input.error input[type=email]{ background-image:url(../img/img_contact-email-error.png); }
div.content article.contact div.form-part div.side-right div.center form div.input textarea{ background-image:url(../img/img_contact-message.png); }
div.content article.contact div.form-part div.side-right div.center form div.input.error textarea{ background-image:url(../img/img_contact-message-error.png); }
div.content article.contact div.form-part div.side-right div.center form div.input.error input[type=text],
div.content article.contact div.form-part div.side-right div.center form div.input.error input[type=email],
div.content article.contact div.form-part div.side-right div.center form div.input.error textarea{
	color:#d6bcad;
	border:1px solid #d6bcad;
}
div.content article.contact div.form-part div.side-right div.center a.btn-empty{
	position:relative;
	z-index:5;
	display:inline-block;
	margin:0px;
	padding:13px 25px;
	width:auto;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:1px;	
	text-decoration:none;			
}
/** CONTENT : NEWSELETTER **/
div.content article.newsletter div.side-left a{ 
	margin:0px;
	padding:0px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:13px;
	line-height:24px;
	font-weight:700;
	text-decoration:underline;
	color:rgba(33,26,38,0.8);
}
div.content article.newsletter div.side-right form{
	position:relative;
	margin:0px;
	padding:0px;
	width:100%;	
}
div.content article.newsletter div.side-right form div.input{
	position:relative;
	margin:0px 0px 20px 0px;
	padding:0px;
	width:370px;
}
div.content article.newsletter div.side-right form div.input span.icon-error{
	position:absolute;
	z-index:5;
	top:50%;
	right:20px;
	margin-top:-12px;
	height:24px;
	width:24px;
	background-image:url(../img/img_error-form.png);
	background-repeat:no-repeat;
	background-position:right center;
}
div.content article.newsletter div.side-right form div.input.textarea span.icon-error{ top:30px; }
div.content article.newsletter div.side-right form div.input div.error-message{ display:none; }
div.content article.newsletter div.side-right form div.input input[type=email]{
	position:relative;
	margin:0px;
	padding:20px 60px;
	height:auto;
	width:250px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	text-align:left;
	color:rgba(33,26,38,1);
	background-color:#fff;
	border:1px solid #d3d1d4;
	outline-style: none;
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	background-repeat:no-repeat;
	background-position:20px center;			
}
div.content article.newsletter div.side-right form div.input input[type=email]::-webkit-input-placeholder{  color:rgba(33,26,38,0.5); text-transform:uppercase; }
div.content article.newsletter div.side-right form div.input input[type=email]::-moz-placeholder{  color:rgba(33,26,38,0.5); text-transform:uppercase; }
div.content article.newsletter div.side-right form div.input input[type=email]:-ms-input-placeholder{  color:rgba(33,26,38,0.5); text-transform:uppercase; }
div.content article.newsletter div.side-right form div.input input[type=email]:-moz-placeholder{  color:rgba(33,26,38,0.5); text-transform:uppercase; }
div.content article.newsletter div.side-right form div.input.error input[type=email]::-webkit-input-placeholder{  color:rgba(214,188,173,1); text-transform:uppercase; }
div.content article.newsletter div.side-right form div.input.error input[type=email]::-moz-placeholder{  color:rgba(214,188,173,1); text-transform:uppercase; }
div.content article.newsletter div.side-right form div.input.error input[type=email]:-ms-input-placeholder{  color:rgba(214,188,173,1); text-transform:uppercase; }
div.content article.newsletter div.side-right form div.input.error input[type=email]:-moz-placeholder{  color:rgba(214,188,173,1); text-transform:uppercase; }
div.content article.newsletter div.side-right form div.input input[type=email]{ background-image:url(../img/img_contact-email.png); }
div.content article.newsletter div.side-right form div.input.error input[type=email]{ background-image:url(../img/img_contact-email-error.png); }
div.content article.newsletter div.side-right form div.input.error input[type=email]{
	color:#d6bcad;
	border:1px solid #d6bcad;
}
div.content article.newsletter div.side-right a.btn-empty{
	position:relative;
	z-index:5;
	display:inline-block;
	margin:0px;
	padding:13px 25px;
	width:auto;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:1px;	
	text-decoration:none;			
}
/** CONTENT : REVIEWS **/
div.content article.reviews div.side-left a.afnor{
	float:left;
	display:block;
	margin:0px;
	padding:0px;
	height:60px;
	width:80px;
	background-image:url(../img/img_afnor.png);
	background-repeat:no-repeat;
	background-position:center;
	background-size:80px 60px;
}
div.content article.reviews div.side-left div.cch{
	float:left;
	display:block;
	margin:0px 0px 0px 20px;
	padding:0px;
	height:60px;
	width:98px;
	background-image:url(../img/img_cch.png);
	background-repeat:no-repeat;
	background-position:center;
	background-size:98px 60px;
}
div.content article.reviews div.side-left div.tablet{
	float:left;
	display:block;
	margin:20px 0px 0px 20px;
	padding:0px;
	height:29px;
	width:120px;
	background-image:url(../img/img_tablet.png);
	background-repeat:no-repeat;
	background-position:center;
	background-size:120px 29px;
}
div.content article.reviews div.side-left div.tripwidget{
	float:left;
	display:block;
	margin:40px 0px 0px 0px;
	padding:0px;
	height:160px;
	width:150px;
	background-image:url(../img/img_tripwidget.png);
	background-repeat:no-repeat;
	background-position:center;
	background-size:150px 160px;
}
div.content article.reviews div.side-left div.satisfaction{
	float:left;
	position:relative;
	display:block;
	margin:80px 0px 0px 40px;
	padding:0px;
	width:154px;
}
div.content article.reviews div.side-left div.satisfaction span.caesar{
	position:absolute;
	left:50%;
	top:50%;
	display:block;
	margin:-70px 0px 0px -77px;
	height:140px;
	width:154px;
	background-image:url(../img/img_caesar.png);
	background-repeat:no-repeat;
	background-position:center;
	background-size:154px 140px;
	opacity:0.08;		
}
div.content article.reviews div.side-left div.satisfaction section{
	position:relative;
	display:inline-block;
	margin:0px;
	padding:0px;
	vertical-align:middle;
	line-height:normal;
	text-align:center;
}
div.content article.reviews div.side-left div.satisfaction span.rating{
	display:inline-block;
	padding-bottom:3px;
	font-family:Arial;
	font-size:35px;
	font-weight:700;
	color:#211a26;
	-webkit-font-feature-settings: 'lnum';
	-moz-font-feature-settings: 'lnum';
	-ms-font-feature-settings: 'lnum';
	font-feature-settings: 'lnum';				
}
div.content article.reviews div.side-left div.satisfaction h3{
	font-size:12px;			
}
div.content article.reviews div.side-right h2{ margin:5px 0px 0px 0px; }
div.content article.reviews div.reviews-container{
	position:relative;
	margin:60px 0px 90px 0px;
	padding:60px 0px 0px 0px;
	border-top:1px solid #e8e8e9;
}
div.content article.reviews div.reviews-container span.loader{
	position:absolute;
	display:block;
	top:60px;
	left:50%;
	margin:0px 0px 0px -25px;
	padding:0px;
	height:50px;
	width:50px;
	border:4px solid rgba(49,40,55,1);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-animation: rotating 2s linear infinite;
	-moz-animation: rotating 2s linear infinite;
	-ms-animation: rotating 2s linear infinite;
	-o-animation: rotating 2s linear infinite;
	animation: rotating 2s linear infinite;										
}
div.content article.reviews div.reviews-container div.review-brick{
	position:relative;
	display:block;
	margin:0px;
	padding:0px;
	width:50%;		
}
/** CONTENT : REVIEWS CONTENT **/
div.content article.reviews div.reviews-container div.review-brick div.review-content{
	position:relative;
	margin:12px;
	padding:30px; 
	display:block;
	word-wrap: break-word;
	text-align:left;
	background-color:#fff;
	-webkit-box-shadow:1px 1px 2px rgba(0,0,0,0.1);
	box-shadow:1px 1px 2px rgba(0,0,0,0.1);		
}
div.content article.reviews div.reviews-container div.review-brick div.review-content h3{
	position:relative;
	display:inline-block;
	margin:0px;
	padding:0px;
}
div.content article.reviews div.reviews-container div.review-brick div.review-content h3:after{
	content:'';
	position:absolute;
	top:3px;
	right:-75px;
	display:block;
	margin:0px;
	padding:0px;
	height:12px;
	width:64px;	
	background-image:url(../img/sp_travel-rate.jpg);
	background-repeat:no-repeat;
}
div.content article.reviews div.reviews-container div.review-brick div.review-content h3.rating-0:after{ background-position:0px -60px; }
div.content article.reviews div.reviews-container div.review-brick div.review-content h3.rating-1:after{ background-position:0px -48px; }
div.content article.reviews div.reviews-container div.review-brick div.review-content h3.rating-2:after{ background-position:0px -36px; }
div.content article.reviews div.reviews-container div.review-brick div.review-content h3.rating-3:after{ background-position:0px -24px; }
div.content article.reviews div.reviews-container div.review-brick div.review-content h3.rating-4:after{ background-position:0px -12px; }
div.content article.reviews div.reviews-container div.review-brick div.review-content h3.rating-5:after{ background-position:0px 0px; }
div.content article.reviews div.reviews-container div.review-brick div.review-content time{
	position:relative;
	display:block;
	margin:3px 0px 15px 22px;
	padding:0px;
	font-size:10px;
	font-style:italic;
	color:#bdbec1;
}
div.content article.reviews div.reviews-container div.review-brick div.review-content img.flag-img{
	position:absolute;
	top:50px;
	left:30px;
	display:block;
	margin:0px;
	padding:0px;
}
div.content article.reviews div.reviews-container div.review-brick div.review-content p{
	position:relative;
	display:block;
	margin:0px 0px 15px 0px;
	padding:0px;
}
div.content article.reviews div.reviews-container div.review-brick div.review-content h4{
	position:relative;
	display:block;
	margin:0px;
	padding:5px 0px 0px 0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:normal;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:2px;
	color:rgba(33,26,38,0.8);		
}
div.content article.reviews div.reviews-container div.review-brick div.review-content h4:after{
	content:'';
	position:absolute;
	top:7px;
	right:0px;
	display:block;
	margin:0px;
	padding:0px;
	height:12px;
	width:64px;	
	background-image:url(../img/sp_travel-rate.jpg);
	background-repeat:no-repeat;
}
div.content article.reviews div.reviews-container div.review-brick div.review-content h4.rating-0:after{ background-position:0px -60px; }
div.content article.reviews div.reviews-container div.review-brick div.review-content h4.rating-1:after{ background-position:0px -48px; }
div.content article.reviews div.reviews-container div.review-brick div.review-content h4.rating-2:after{ background-position:0px -36px; }
div.content article.reviews div.reviews-container div.review-brick div.review-content h4.rating-3:after{ background-position:0px -24px; }
div.content article.reviews div.reviews-container div.review-brick div.review-content h4.rating-4:after{ background-position:0px -12px; }
div.content article.reviews div.reviews-container div.review-brick div.review-content h4.rating-5:after{ background-position:0px 0px; }
/** CONTENT : ACCESS **/
div.content article.access div.side-left p{ font-weight:700; }
div.content article.access div.side-right a.btn-empty{
	position:relative;
	z-index:5;
	display:inline-block;
	margin:30px 0px 30px 0px;
	padding:13px 25px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
	text-align:center;
	letter-spacing:1px;	
	text-decoration:none;			
}
div.content article.access div.purple{
	position:absolute;
	margin:0px;
	padding:0px;
	height:725px;
	width:250px;
	text-align:center;
	background-color:#332936;
}
div.content article.access div.purple h2{
	margin:50px 0px;
	padding:0px;
	color:#fff;	
}
div.content article.access div.purple ul.places-links{
	margin:0px;
	padding:0px;	
}
div.content article.access div.purple ul.places-links li{
	display:block;
	margin:10px 0px;
	padding:0px;	
}
div.content article.access div.purple ul.places-links li a{
	display:inline-block;
	overflow:hidden;
	margin:0px;
	padding:0px;
	height:15px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:normal;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:0.5px;	
}
div.content article.access div.purple ul.places-links li a span.hover{
	position:relative;
	left:0px;
	top:0px;	
	display:block;	
	color:rgba(255,255,255,0.7);
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: easeOutQuart;
    transition-timing-function: easeOutQuart;		
}
div.content article.access div.purple ul.places-links li a.active span.hover,
body.no-touch div.content article.access div.purple ul.places-links li a:hover span.hover{
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
div.content article.access div.purple ul.places-links li a span.hover:after{
	position:absolute;
	left:0px;
	top:0px;	
	display:block;	
	content: attr(data-hover);
	color:rgba(255,255,255,1);
	-webkit-transform: translateY(100%);
	transform: translateY(100%);	
}
div.content article.access div#map-canvas{
	margin:0px 0px 0px 250px;
	padding:0px;
	height:725px;
	width:auto;	
}
div.content article.access div#map-canvas .infos-content{
	margin:10px 0px 10px 20px;
	width:240px;
}
div.content article.access div#map-canvas .infos-content.hotel{ height:130px; }
div.content article.access div#map-canvas .infos-content span.icon{
	display:block;
	margin:0px;
	padding:0px;
	height:55px;
	background-image:url(../img/maps/sp_map-small.jpg);
	background-position:center top;
	background-repeat:no-repeat;
}
div.content article.access div#map-canvas .infos-content.hotel span.icon{ background-image:url(../img/maps/img_hotel-icon.png); }
div.content article.access div#map-canvas .infos-content.restaurant span.icon{ background-position:center 0px; }
div.content article.access div#map-canvas .infos-content.museum span.icon{ background-position:center -110px; }
div.content article.access div#map-canvas .infos-content.bar span.icon{ background-position:center -55px; }
div.content article.access div#map-canvas .infos-content.train_station span.icon{ background-position:center -330px; }
div.content article.access div#map-canvas .infos-content.airport span.icon{ background-position:center -385px; }
div.content article.access div#map-canvas .infos-content.subway_station span.icon{ background-position:center -275px; }
div.content article.access div#map-canvas .infos-content h1{
	display:block;
	margin:10px 0px 3px 0px;
	padding:0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:15px;
	line-height:normal;
	font-weight:700;
	text-transform:uppercase;
	text-align:center;
	letter-spacing:2px;
	color:rgba(33,26,38,1);	
}
div.content article.access div#map-canvas .infos-content h1::after{ display:none; }
div.content article.access div#map-canvas .infos-content p.address{
	display:block;
	margin:15px 0px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:normal;
	font-weight:normal;
	text-decoration:none;
	text-align:center;
	color:rgba(33,26,38,0.8);
}
div.content article.access div#map-canvas .infos-content p.phone{
	float:left;
	display:block;
	padding-left:20px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:normal;
	font-weight:normal;
	text-decoration:none;
	color:rgba(33,26,38,0.8);
	-webkit-font-feature-settings: 'lnum';
	-moz-font-feature-settings: 'lnum';
	-ms-font-feature-settings: 'lnum';
	font-feature-settings: 'lnum';		
}
div.content article.access div#map-canvas .infos-content p.phone span{
	position:absolute;
	display:block;
	margin-left:-20px;
	height:16px;
	width:16px;
	background-image:url(../img/maps/sp_bullemap.jpg);
	background-repeat:no-repeat;	
}
div.content article.access div#map-canvas .infos-content a.email,
div.content article.access div#map-canvas .infos-content a.website{
	float:right;
	display:block;
	height:15px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:normal;
	font-weight:normal;
	text-decoration:none;
	color:rgba(33,26,38,0.8);
}
div.content article.access div#map-canvas .infos-content a.email:hover,
div.content article.access div#map-canvas .infos-content a.website:hover{ color:rgba(33,26,38,1); }
div.content article.access div#map-canvas .infos-content a.email span,
div.content article.access div#map-canvas .infos-content a.website span{
	position:absolute;
	display:block;
	margin-left:-20px;
	height:16px;
	width:16px;
	background-image:url(../img/maps/sp_bullemap.jpg);
	background-repeat:no-repeat;
	background-position:-32px 0px;	
}
div.content article.access div#map-canvas .infos-content div.minutes{
	position:relative;
	display:block;
	margin:10px 0px 0px 0px;
	padding:15px 0px 0px 0px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:normal;
	font-weight:normal;
	text-decoration:none;
	color:rgba(33,26,38,0.5);
	text-align:center;
	border-top:1px dotted #bcbabd;
	-webkit-font-feature-settings: 'lnum';
	-moz-font-feature-settings: 'lnum';
	-ms-font-feature-settings: 'lnum';
	font-feature-settings: 'lnum';		
}
div.content article.access div#map-canvas .infos-content.airport div.minutes,
div.content article.access div#map-canvas .infos-content.train_station div.minutes{ display:none; }
div.content article.access div#map-canvas .infos-content div.minutes span{
	position:absolute;
	display:inline-block;
	margin:-2px 0px 0px -27px;
	height:20px;
	width:20px;
	background-image:url(../img/maps/img_distance-icon.jpg);
	background-repeat:no-repeat;
	background-position:0px 0px;	
}
div.content article.access div.favorite{
	position:relative;
	margin:0px;
	padding:0px;
}
div.content article.access div.favorite div.favorite-heart{
	position:relative;
	margin:0px;
	padding:0px;
	text-align:center;
	background-color:#f2f1f3;
	background-image:url(../img/bg_pattern-grey.jpg);
	background-repeat:repeat;	
}
div.content article.access div.favorite div.favorite-heart h3{
	position:relative;
	display:inline-block;
	margin:0px;
	padding:60px 0px 60px 90px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:15px;
	line-height:24px;
	font-weight:700;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:2px;
	color:rgba(33,26,38,1);	
}
div.content article.access div.favorite div.favorite-heart h3::before{
	content:'';
	position:absolute;
	top:50%;
	left:0px;
	margin-top:-35px;
	height:71px;
	width:70px;
	background-image:url(../img/img_favorite-heart.png);
	background-repeat:no-repeat;
}
div.content article.access div.favorite span.counter{
	position:absolute;
	top:170px;
	left:25%;
	z-index:5;
	display:block;
	margin:0px 0px 0px -12px;
	padding:0px;
	width:25px;
	color:rgba(33,26,38,0.5);	
}
div.content article.access div.favorite a.favorite-arrow{
	position:absolute;
	top:307px;
	z-index:5;
	display:block;
	margin:0px;
	padding:0px;
	height:35px;
	width:19px;	
	background-repeat:no-repeat;	
}
div.content article.access div.favorite a.favorite-arrow.left{
	left:0px;
	margin-left:40px;
	background-image:url(../img/img_favorite-arrow-left.png);
}
div.content article.access div.favorite a.favorite-arrow.right{
	right:50%;
	margin-right:40px;
	background-image:url(../img/img_favorite-arrow-right.png);
}
body.no-touch div.content article.access div.favorite a.favorite-arrow{ opacity:0.2; }
body.no-touch div.content article.access div.favorite a.favorite-arrow:hover{ opacity:1; }
div.content article.access div.favorite div.favorite-content,
div.content article.access div.favorite div.favorite-image{
	position:relative;
	overflow:hidden;
	float:left;
	margin:0px;
	padding:0px;
	height:400px;
	width:50%;
	line-height:400px;
	text-align:center;
	background-color:#fff;
}
div.content article.access div.favorite div.favorite-content div.horizontal-bar,
div.content article.access div.favorite div.favorite-image div.horizontal-bar{
	position:relative;
	margin:0px;
	padding:0px;
	height:400px;
}
div.content article.access div.favorite div.favorite-content div.horizontal-bar div.slide,
div.content article.access div.favorite div.favorite-image div.horizontal-bar div.slide{
	position:relative;
	float:left;
	display:block;
	margin:0px;
	padding:0px;
	height:400px;
}
div.content article.access div.favorite div.favorite-image div.horizontal-bar div.slide{
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
div.content article.access div.favorite div.favorite-image div.horizontal-bar div.slide.s-01{ background-image:url(../img/header/bg_header-reviews.jpg); }
div.content article.access div.favorite div.favorite-image div.horizontal-bar div.slide.s-02{ background-image:url(../img/header/bg_header-contact.jpg); }
div.content article.access div.favorite div.favorite-image div.horizontal-bar div.slide.s-03{ background-image:url(../img/header/bg_header-newsletter.jpg); }
div.content article.access div.favorite div.favorite-image div.horizontal-bar div.slide.s-04{ background-image:url(../img/header/bg_header-browsers.jpg); }
div.content article.access div.favorite div.favorite-image div.horizontal-bar div.slide.s-05{ background-image:url(../img/header/bg_header-access.jpg); }
div.content article.access div.favorite div.favorite-content section.line-container{
	display:inline-block;
	vertical-align:middle;
	line-height:normal;
	padding:0px 120px;
	opacity:1;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;			
}
div.content article.access div.favorite div.favorite-content section.line-container.hide{ opacity:0; }
div.content article.access div.favorite div.favorite-content section.line-container h3{ padding-top:30px; }
div.content article.access div.favorite div.favorite-content section.line-container p{ text-align:center; }
/** CONTENT : HOTEL **/
div.content article.hotel div.side-left p{ font-weight:700; }
div.content article.hotel div.services-image,
div.content article.hotel div.services-content{
	float:left;
	margin:0px;
	padding:0px;
	height:750px;
	line-height:750px;
	width:50%;
	background-color:#fff;
}
@media screen and (max-width: 1260px) {
	div.content article.hotel div.services-image,
	div.content article.hotel div.services-content{
		float:none;
		width:auto;
	}
}
div.content article.hotel div.services-image{
	height:600px;
	background-image:url(../img/bg_hotel-services.jpg);
	background-repeat:no-repeat;
	background-position:bottom;
	background-size:cover;
}
div.content article.hotel div.services-content section{
	display:inline-block;
	margin:0px 20% 0px 25%;
	padding:0px;
	vertical-align:middle;
	line-height:normal;
}
div.content article.hotel div.services-content section h2{ position:relative; }
div.content article.hotel div.services-content section h2::before{
	content:'';
	position:absolute;
	top:50%;
	left:-100px;
	margin-top:-50px;
	height:71px;
	width:70px;
	background-image:url(../img/img_icon-services.png);
	background-repeat:no-repeat;
}
div.content article.hotel div.services-content section hr{
	width:35px;
	border:none;
	border-bottom:1px solid #000;
}
div.content article.hotel div.services-content section ul{
	margin:40px 0px 0px 0px;
	padding:0px;
}
div.content article.hotel div.services-content section ul li{
	position:relative;
	margin:0px;
	padding:0px 0px 0px 25px;
	list-style:none;
	line-height:24px;
}
div.content article.hotel div.services-content section ul li::before{
	content:'';
	position:absolute;
	top:50%;
	left:0px;
	margin-top:-2px;
	height:5px;
	width:5px;
	background-color:#211a26;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);	
}


article.plan-du-site section {
	text-align: center;
}
article.plan-du-site  section hr{
	width:35px;
	border:none;
	border-bottom:1px solid #000;
}
article.plan-du-site section ul{
	margin:0px 0px 0px 0px;
	padding:0px;
}
article.plan-du-site section ul li{
	position:relative;
	margin:0px;
	padding:0px 0px 0px 0px;
	list-style:none;
	line-height:24px;
}

article.plan-du-site section a {
	color: rgba(49,40,55,0.85);

}


div.content article.hotel div.macarons-image{
	position:relative;
	float:left;
	margin:-150px 0px 0px 0px;
	padding:0px;
	height:500px;
	width:50%;
	background-image:url(../img/bg_hotel-macarons.jpg);
	background-repeat:no-repeat;
	background-position:bottom right;
	background-size:cover;	
}
@media screen and (max-width: 1260px) {
	div.content article.hotel div.macarons-image{
		margin:0px;
		float:none;
		width:auto;
	}
}
div.content article.hotel div.macarons-image div.macarons-content{
	position:absolute;
	top:0px;
	left:0px;
	margin:0px;
	padding:0px;
	height:150px;
	width:100%;
	text-align:center;
	background-color:#f2f1f3;
	background-image:url(../img/bg_pattern-grey.jpg);
	background-repeat:repeat;	
}
div.content article.hotel div.macarons-image div.macarons-content div.macarons-left{
	position:absolute;
	top:0px;
	left:0px;
	margin:0px;
	padding:0px;
	height:100%;
	width:50%;	
}
div.content article.hotel div.macarons-image div.macarons-content div.macarons-right{
	position:absolute;
	top:0px;
	right:0px;
	margin:0px;
	padding:0px;
	height:100%;
	width:50%;	
}
div.content article.hotel div.macarons-image div.macarons-content h3{
	margin:0px;
	padding:0px;
}
div.content article.hotel div.macarons-image div.macarons-content h3.first{ margin-top:35px; }
div.content article.hotel div.macarons-image div.macarons-content h3.second{ margin-top:5px; }
div.content article.hotel div.macarons-image div.macarons-content p{
	position:relative;
	display:inline-block;
	margin:20px 20px 0px 20px;
	padding:0px;
	font-size:11px;
	line-height:normal;
	font-style:italic;	 
}
div.content article.hotel div.macarons-image div.macarons-content p::before,
div.content article.hotel div.macarons-image div.macarons-content p::after{
	content:'';
	position:absolute;
	top:50%;
	left:-20px;
	display:block;
	margin-top:-1px;
	height:1px;
	width:10px;
	background-color:#7b787d;	
}
div.content article.hotel div.macarons-image div.macarons-content p::after{
	left:auto;
	right:-20px;
}
div.content article.hotel div.macarons-image div.macarons-content a.btn-empty{
	position:relative;
	z-index:5;
	display:inline-block;
	margin:50px 0px 0px 0px;
	padding:13px 20px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:1px;	
	text-decoration:none;			
}
div.content article.hotel div.oil-image,
div.content article.hotel div.oil-content{
	position:relative;
	float:left;
	margin:0px;
	padding:0px;
	height:350px;
	line-height:350px;
	width:25%;
}
@media screen and (max-width: 1260px) {
	div.content article.hotel div.oil-image,
	div.content article.hotel div.oil-content{
		width:50%;
	}
}
div.content article.hotel div.oil-image{
	background-image:url(../img/bg_hotel-oil.jpg);
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
div.content article.hotel div.oil-content section{
	display:inline-block;
	margin:0px 15%;
	padding:0px;
	vertical-align:middle;
	line-height:normal;
	text-align:center;
}
div.content article.hotel div.oil-content section h2{ position:relative; }
div.content article.hotel div.oil-content section p{ text-align:center; }
div.content article.hotel div.oil-content section a.btn-empty{
	position:relative;
	z-index:5;
	display:inline-block;
	margin:0px;
	padding:13px 20px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:1px;	
	text-decoration:none;			
}
div.content article.hotel div.review-image,
div.content article.hotel div.review-content{
	position:relative;
	float:left;
	margin:0px;
	padding:0px;
	height:400px;
	line-height:400px;
	text-align:center;
	width:75%;
	background-color:#fff;
}
div.content article.hotel div.review-image{
	width:25%;
	background-color:#f2f1f3;
	background-image:url(../img/bg_pattern-grey.jpg);
	background-repeat:repeat;		
}
@media screen and (max-width: 1260px) {
	div.content article.hotel div.review-image,
	div.content article.hotel div.review-content{
		width:50%;
	}
}
div.content article.hotel div.review-image span.caesar{
	position:absolute;
	left:50%;
	top:50%;
	display:block;
	margin:-106px 0px 0px -117px;
	height:212px;
	width:234px;
	background-image:url(../img/img_caesar.png);
	background-repeat:no-repeat;
	background-position:center;
	opacity:0.08;		
}
div.content article.hotel div.review-image section,
div.content article.hotel div.review-content section{
	position:relative;
	display:inline-block;
	margin:0px;
	padding:0px;
	vertical-align:middle;
	line-height:normal;
	text-align:center;
}
div.content article.hotel div.review-image section span.rating{
	display:inline-block;
	padding-bottom:3px;
	font-family:Arial;
	font-size:54px;
	font-weight:700;
	color:#211a26;
	-webkit-font-feature-settings: 'lnum';
	-moz-font-feature-settings: 'lnum';
	-ms-font-feature-settings: 'lnum';
	font-feature-settings: 'lnum';				
}
div.content article.hotel div.review-image section a.btn-empty{
	position:relative;
	z-index:5;
	display:inline-block;
	margin:0px;
	padding:13px 20px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:1px;	
	text-decoration:none;
	background-color:#f2f1f3;
	background-image:url(../img/bg_pattern-grey.jpg);				
}
div.content article.hotel div.review-content section{
	padding-bottom:20px;
	width:430px;
	border-bottom:1px solid #d3d1d4;
}
@media screen and (max-width: 1260px) {
	div.content article.hotel div.review-content section{
		width:330px;
		border-bottom:none;
	}
}
div.content article.hotel div.review-content section p{
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:18px;
	line-height:26px;
	font-weight:normal;
	text-decoration:none;
	text-align:center;
	color:rgba(33,26,38,0.6);
}
@media screen and (max-width: 1260px) {
	div.content article.hotel div.review-content section p{
		font-size:16px;
		line-height:24px;
	}
}
div.content article.hotel div.review-content section span.name{
	position:absolute;
	right:-100px;
	bottom:-8px;
	display:block;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:700;
	text-transform:uppercase;
	letter-spacing:1px;
	color:rgba(33,26,38,0.5);
}
@media screen and (max-width: 1260px) {
	div.content article.hotel div.review-content section span.name{
		right:50%;
		margin-right:-70px;
	}
}
div.content article.hotel div.review-content section::before{
	content:'';
	position:absolute;
	left:-40px;
	bottom:-17px;
	display:block;
	height:30px;
	width:30px;
	background-image:url(../img/img_quote.png);
	background-repeat:no-repeat;
	background-position:center;
}
@media screen and (max-width: 1260px) {
	div.content article.hotel div.review-content section::before{
		left:50%;
		margin-left:-55px;
	}
}
/** CONTENT : WELLNESS **/
div.content article.wellness div.side-left p{ font-weight:700; }
div.content article.wellness div.side-right ul{
	margin:-10px 0px 0px 0px;
	padding:0px 0px 20px 0px;
}
div.content article.wellness div.side-right ul li{
	position:relative;
	margin:0px;
	padding:0px 0px 0px 25px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:13px;
	line-height:24px;
	font-weight:normal;
	font-style:italic;
	text-decoration:none;
	text-align:justify;
	color:rgba(33,26,38,0.8);
	list-style:none;
}
div.content article.wellness div.side-right ul li::before{
	content:'';
	position:absolute;
	top:50%;
	left:0px;
	margin-top:-2px;
	height:5px;
	width:5px;
	background-color:#211a26;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);	
}
div.content article.wellness div.side-right a.btn-empty{
	position:relative;
	z-index:5;
	display:inline-block;
	margin:50px px 0px px;
	padding:13px 25px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:1px;				
}
/** CONTENT : TEA **/
div.content article.tea div.side-left p{ font-weight:700; }
/** CONTENT : PHOTOS **/
div.content article.photos{
	position:relative;
	margin:0px;	
	padding:2px;
	background-color:#FFFFFF;
	background-image:none;				
}
div.content article.photos a.fancy{
	position:relative;
	overflow:hidden;
	float:left;
	display:block;
	margin:0px;	
	padding:0px;
	width:25%;
	border:2px solid #fff;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;							
}
div.content article.photos a.fancy div{
	position:absolute;
	top:0px;
	left:0px;
	display:block;
	margin:0px;
	padding:0px;
	height:100%;
	width:100%;
	background-position:center;
	background-size:cover;
	-webkit-transition: -webkit-transform 0.5s;	
	-moz-transition: -moz-transform 0.5s;	
	transition: transform 0.5s;
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	transform:scale(1);		
}
div.content article.photos a.fancy:hover div{
	-webkit-transform:scale(1.05);
	-moz-transform:scale(1.05);
	transform:scale(1.05);				
}
/** CONTENT : ROOMS **/
div.content article.rooms div.side-left p{ font-weight:700; }
div.content article.rooms div.white div.room-img,
div.content article.rooms div.white div.room-content{
	position:relative;
	margin:0px;
	padding:0px;
	height:400px;
	line-height:400px;
	width:50%;
	text-align:center;
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
div.content article.rooms div.white.id-1 div.room-img{ float:left; }
div.content article.rooms div.white.id-1 div.room-content{ float:right; }
div.content article.rooms div.white.id-2 div.room-img{ float:right; }
div.content article.rooms div.white.id-2 div.room-content{ float:left; }
div.content article.rooms div.white.id-3 div.room-img{ float:left; }
div.content article.rooms div.white.id-3 div.room-content{ float:right; }
div.content article.rooms div.white.id-4 div.room-img{ float:right; }
div.content article.rooms div.white.id-4 div.room-content{ float:left; }
div.content article.rooms div.white.id-5 div.room-img{ float:left; }
div.content article.rooms div.white.id-5 div.room-content{ float:right; }
div.content article.rooms div.white div.room-content::before{
	content:'';
	position:absolute;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	background-color:rgba(255,255,255,0.98);	
}
div.content article.rooms div.white div.room-content section{
	position:relative;
	z-index:5;
	display:inline-block;
	margin:0px 15%;
	padding:0px;
	vertical-align:middle;
	line-height:normal;	
}
div.content article.rooms div.white div.room-content section span.rate{
	display:inline-block;
	margin:0px 0px 10px 0px;
	padding:0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:11px;
	line-height:normal;
	font-weight:normal;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:2px;
	color:rgba(33,26,38,0.5);	
}
div.content article.rooms div.white div.room-content section a.btn-empty{
	position:relative;
	z-index:5;
	display:inline-block;
	margin:50px px 0px px;
	padding:13px 25px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:1px;				
}
div.content header.room-display nav.rooms-direction{
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	margin:0px;
	padding:0px;
	height:60px;
	background-color:rgba(69,60,72,0.85);
}
div.content header.room-display nav.rooms-direction a{
	position:absolute;
	display:block;
	top:24px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:1px;
	color:#fff;
	width:300px;
}
div.content header.room-display nav.rooms-direction a.prev{
	padding-left:20px; 
	left:25px;
	color:rgba(255,255,255,0.5);
}
div.content header.room-display nav.rooms-direction a.prev:before{
	content:'';
	position:absolute;
	top:50%;
	left:0px;
	margin-top:-8px;
	height:15px;
	width:8px;
	background-image:url(../img/img_rooms-arrow-left.png);
	background-repeat:no-repeat;
	opacity:0.5;
}
div.content header.room-display nav.rooms-direction a.next{
	padding-right:20px;
	right:25px;
	text-align:right;
	color:rgba(255,255,255,0.5);
}
div.content header.room-display nav.rooms-direction a.next:before{
	content:'';
	position:absolute;
	top:50%;
	right:0px;
	margin-top:-8px;
	height:15px;
	width:8px;
	background-image:url(../img/img_rooms-arrow-right.png);
	background-repeat:no-repeat;
	opacity:0.5;
}
div.content header.room-display nav.rooms-direction a.back{
	left:50%;
	margin-left:-150px;
	text-align:center;
}
div.content article.rooms div.side-left ul{
	margin:50px 0px 50px 0px;
	padding:0px;
}
div.content article.rooms div.side-left ul li{
	position:relative;
	margin:0px;
	padding:0px 0px 0px 25px;
	list-style:none;
	line-height:24px;
	font-style:italic;
}
div.content article.rooms div.side-left ul li::before{
	content:'';
	position:absolute;
	top:50%;
	left:0px;
	margin-top:-2px;
	height:5px;
	width:5px;
	background-color:#211a26;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);	
}
div.content article.rooms div.side-right span{
	position:relative;
	float:left;
	display:block;
	margin:70px 0px 0px 0px;
	padding:0px;
	width:32%;
	text-align:center;
}
div.content article.rooms div.side-right span.beds{ width:36%; }
div.content article.rooms div.side-right span.surface{ float:right; }
div.content article.rooms div.side-right span::before{
	content:'';
	position:absolute;
	top:-60px;
	display:block;
	height:46px;
	width:45px;
}
div.content article.rooms div.side-right span.persons::before{ 
	left:50%;
	margin-left:-22px;
	background-image:url(../img/img_room-persons.png);
}
div.content article.rooms div.side-right span.beds::before{
	left:50%;
	margin-left:-22px;
	background-image:url(../img/img_room-beds.png);
}
div.content article.rooms div.side-right span.surface::before{
	left:50%;
	margin-left:-22px;
	background-image:url(../img/img_room-surface.png);
}
div.content article.rooms div.side-right hr{
	margin:50px 0px;
	width:auto;
	border:none;
	border-bottom:1px solid #000;
}
div.content article.rooms div.side-right span.rate{
	position:relative;
	display:block;
	margin:0px;
	padding:0px 0px 0px 110px;
	width:auto;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:38px;
	line-height:normal;
	font-weight:700;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:2px;
	color:rgba(33,26,38,1);	
}
body.us div.content article.rooms div.side-right span.rate{ padding-left:135px; }
body.de div.content article.rooms div.side-right span.rate{ padding-left:50px; }
body.it div.content article.rooms div.side-right span.rate{ padding-left:115px; }
body.jp div.content article.rooms div.side-right span.rate{ padding-left:130px; }
div.content article.rooms div.side-right span.rate span{
	position:absolute;
	left:0px;
	top:15px;
	margin:0px;
	width:auto;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:13px;
	line-height:normal;
	text-transform:none;
	font-weight:normal;
	color:rgba(33,26,38,0.8);	
}
div.content article.rooms div.side-right a.btn-empty{
	position:relative;
	z-index:5;
	display:inline-block;
	margin:20px 0px 50px 0px;
	padding:13px 25px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:1px;	
	text-decoration:none;			
}
/** CONTENT : FAQS **/
div.content article.faqs div.white div.middle{
	margin:0px auto;
	padding:50px 0px 30px 0px;
	width:780px;
	cursor:pointer;
}
div.content article.faqs div.white div.answer{ display:none; }
/** CONTENT : OFFERS **/
div.content article.offers div.white div.offer-img,
div.content article.offers div.white div.offer-content{
	position:relative;
	margin:0px;
	padding:0px;
	height:400px;
	line-height:400px;
	width:50%;
	text-align:center;
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
div.content article.offers div.white.right div.offer-img{ float:left; }
div.content article.offers div.white.right div.offer-content{ float:right; }
div.content article.offers div.white.left div.offer-img{ float:right; }
div.content article.offers div.white.left div.offer-content{ float:left; }
div.content article.offers div.white div.offer-content::before{
	content:'';
	position:absolute;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	background-color:rgba(255,255,255,0.98);	
}
div.content article.offers div.white div.offer-content section{
	position:relative;
	z-index:5;
	display:inline-block;
	margin:0px 15%;
	padding:0px;
	vertical-align:middle;
	line-height:normal;	
}
div.content article.offers div.white div.offer-content section span.rate{
	display:inline-block;
	margin:0px 0px 10px 0px;
	padding:0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:11px;
	line-height:normal;
	font-weight:normal;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:2px;
	color:rgba(33,26,38,0.5);	
}
div.content article.offers div.white div.offer-content section p{
	margin:0px;
	padding:0px 0px 30px 0px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:13px;
	line-height:24px;
	font-weight:normal;
	text-decoration:none;
	text-align:center;
	color:rgba(33,26,38,0.8);	
}
div.content article.offers div.white div.offer-content section a.btn-empty{
	position:relative;
	z-index:5;
	display:inline-block;
	margin:50px px 0px px;
	padding:13px 25px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:1px;				
}
div.content header.offer-display nav.offers-direction{
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	margin:0px;
	padding:0px;
	height:60px;
	background-color:rgba(69,60,72,0.85);
}
div.content header.offer-display nav.offers-direction a{
	position:absolute;
	display:block;
	top:24px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:1px;
	color:#fff;
	width:300px;
}
div.content header.offer-display nav.offers-direction a.prev{
	padding-left:20px; 
	left:25px;
	color:rgba(255,255,255,0.5);
}
div.content header.offer-display nav.offers-direction a.prev:before{
	content:'';
	position:absolute;
	top:50%;
	left:0px;
	margin-top:-8px;
	height:15px;
	width:8px;
	background-image:url(../img/img_rooms-arrow-left.png);
	background-repeat:no-repeat;
	opacity:0.5;
}
div.content header.offer-display nav.offers-direction a.next{
	padding-right:20px;
	right:25px;
	text-align:right;
	color:rgba(255,255,255,0.5);
}
div.content header.offer-display nav.offers-direction a.next:before{
	content:'';
	position:absolute;
	top:50%;
	right:0px;
	margin-top:-8px;
	height:15px;
	width:8px;
	background-image:url(../img/img_rooms-arrow-right.png);
	background-repeat:no-repeat;
	opacity:0.5;
}
div.content header.offer-display nav.offers-direction a.back{
	left:50%;
	margin-left:-150px;
	text-align:center;
}
div.content article.offers div.side-right span.rate{
	position:relative;
	display:block;
	margin:0px;
	padding:0px 0px 0px 110px;
	width:auto;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:38px;
	line-height:normal;
	font-weight:700;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:2px;
	color:rgba(33,26,38,1);	
}
body.us div.content article.offers div.side-right span.rate{ padding-left:135px; }
body.de div.content article.offers div.side-right span.rate{ padding-left:50px; }
body.it div.content article.offers div.side-right span.rate{ padding-left:115px; }
body.jp div.content article.offers div.side-right span.rate{ padding-left:130px; }
div.content article.offers div.side-right span.rate span{
	position:absolute;
	left:0px;
	top:15px;
	margin:0px;
	width:auto;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:13px;
	line-height:normal;
	text-transform:none;
	font-weight:normal;
	color:rgba(33,26,38,0.8);	
}
div.content article.offers div.side-right p.italic{ font-style:italic; }
div.content article.offers div.side-right a.btn-empty{
	position:relative;
	z-index:5;
	display:inline-block;
	margin:20px 0px 50px 0px;
	padding:13px 25px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:1px;	
	text-decoration:none;			
}
/** CONTENT : POSTS **/
div.content article.posts{
	margin:0px;
	padding:0px;
}
div.content article.posts div.posts-container{
	position:relative;
	margin:0px;
	padding:0px;
}
div.content article.posts div.posts-container div.sidebar-posts{
	position:absolute;
	top:0px;
	bottom:0px;
	margin:0px;
	padding:0px;
	width:250px;
	text-align:center;
	background-color:#332936;					
}
div.content article.posts div.posts-container div.sidebar-posts h2{
	margin:50px 0px;
	padding:0px;
	color:#fff;	
}
div.content article.posts div.posts-container div.sidebar-posts ul.categories{
	margin:0px;
	padding:0px;	
}
div.content article.posts div.posts-container div.sidebar-posts ul.categories li{
	display:block;
	margin:10px 0px;
	padding:0px;	
}
div.content article.posts div.posts-container div.sidebar-posts ul.categories li a{
	display:inline-block;
	overflow:hidden;
	margin:0px;
	padding:0px;
	height:15px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:normal;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:0.5px;	
}
div.content article.posts div.posts-container div.sidebar-posts ul.categories li a span.hover{
	position:relative;
	left:0px;
	top:0px;	
	display:block;	
	color:rgba(255,255,255,0.7);
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: easeOutQuart;
    transition-timing-function: easeOutQuart;		
}
div.content article.posts div.posts-container div.sidebar-posts ul.categories li a.current span.hover,
body.no-touch div.content article.posts div.posts-container div.sidebar-posts ul.categories li a:hover span.hover{
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
div.content article.posts div.posts-container div.sidebar-posts ul.categories li a span.hover:after{
	position:absolute;
	left:0px;
	top:0px;	
	display:block;	
	content: attr(data-hover);
	color:rgba(255,255,255,1);
	-webkit-transform: translateY(100%);
	transform: translateY(100%);	
}
div.content article.posts div.posts-container div.content-posts{
	position:relative;
	margin:0px 0px 0px 250px;
	padding:12px;
}
div.content article.posts div.posts-container div.content-posts div.content-posts-container{
	position:relative;
	margin:0px;
	padding:0px;
}
div.content article.posts div.posts-container div.content-posts div.content-posts-container div.brick-post{
	position:relative;
	display:block;
	margin:0px;
	padding:0px;
	width:33%;
}
@media screen and (max-width: 1300px) {
	div.content article.posts div.posts-container div.content-posts div.content-posts-container div.brick-post{
		width:50%;
	}
}
div.content article.posts div.posts-container div.content-posts div.content-posts-container div.brick-post div.brick-post-content{
	position:relative;
	margin:12px;
	padding:30px; 
	display:block;
	word-wrap: break-word;
	text-align:left;
	background-color:#fff;
	-webkit-box-shadow:1px 1px 2px rgba(0,0,0,0.1);
	box-shadow:1px 1px 2px rgba(0,0,0,0.1);	
}
div.content article.posts div.posts-container div.content-posts div.content-posts-container div.brick-post div.brick-post-content div.brick-post-img{
	position:absolute;
	top:0px;
	left:0px;
	margin:0px;
	padding:0px;
	height:200px;
	width:100%;
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
}
div.content article.posts div.posts-container div.content-posts div.content-posts-container div.brick-post div.brick-post-content h3{
	margin:200px 0px 5px 0px;
	padding:0px;
}
div.content article.posts div.posts-container div.content-posts div.content-posts-container div.brick-post div.brick-post-content time{
	position:relative;
	display:block;
	margin:0px 0px 15px 0px;
	padding:0px;
	font-size:10px;
	font-style:italic;
	color:#bdbec1;
}
div.content article.posts div.posts-container div.content-posts div.content-posts-container div.brick-post div.brick-post-content p{
	position:relative;
	display:block;
	margin:0px;
	padding:0px;
}
div.content article.posts div.posts-container div.content-posts div.content-posts-container div.brick-post div.brick-post-content a.btn-empty{
	position:relative;
	z-index:5;
	display:inline-block;
	margin:20px 0px 0px 0px;
	padding:13px 25px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:1px;	
	text-decoration:none;			
}
div.content article.posts div.posts-container div.content-posts div.paging{
	margin:0px;
	padding:0px;
	text-align:center;
}
div.content article.posts div.posts-container div.content-posts div.paging a,
div.content article.posts div.posts-container div.content-posts div.paging span{
	position:relative;
	z-index:5;
	display:inline-block;
	margin:0px;
	padding:0px;
	height:30px;
	width:30px;	
	font-family:'Playfair Display', Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:normal;
	font-style:normal;
	letter-spacing:normal;
	color:rgba(33,26,38,0.8);
	text-align:center;
	text-decoration:none;
	-webkit-font-feature-settings: 'lnum';
	-moz-font-feature-settings: 'lnum';
	-ms-font-feature-settings: 'lnum';
	font-feature-settings: 'lnum';	
}
div.content article.posts div.posts-container div.content-posts div.paging a{
	padding:6px 0px 0px 0px;
	height:24px;
}
div.content article.posts div.posts-container div.content-posts div.paging span{ margin:40px 10px 35px 10px; }
div.content article.posts div.posts-container div.content-posts div.paging span::before{
	content:'';
	position:absolute;
	z-index:-1;
	top:50%;
	left:50%;
	margin-top:-15px;
	margin-left:-15px;
	height:30px;
	width:30px;
	background-color:#transparent;
	border:3px solid #211a26;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;		
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);		
}
div.content article.posts div.posts-container div.content-posts div.paging span.current{ color:#fff; }
div.content article.posts div.posts-container div.content-posts div.paging span.current::before{ background-color:#211a26; margin-top:-20px; }
div.content header.post-display nav.posts-direction{
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	margin:0px;
	padding:0px;
	height:60px;
	background-color:rgba(69,60,72,0.85);
}
div.content header.post-display nav.posts-direction a{
	position:absolute;
	display:block;
	top:24px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:1px;
	color:#fff;
	width:300px;
}
div.content header.post-display nav.posts-direction a.back{
	left:50%;
	margin-left:-150px;
	text-align:center;
}
div.content article.posts div.side-right h2{ padding:0px; }
div.content article.posts div.side-right time{
	display:inline-block;
	margin:10px 0px 25px 0px;
	padding:0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:11px;
	line-height:normal;
	font-weight:normal;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:2px;
	color:rgba(33,26,38,0.5);	
}
/** CONTENT : CTA **/
div.content div.cta{
	position:relative;
	margin:0px;
	padding:0px;
	height:790px;
}
body.rooms div.content div.cta,
body.offers div.content div.cta,
body.google_maps div.content div.cta{ border-top:10px solid #fff; }
div.content div.cta div.img{
	position:relative;
	margin:0px 425px 0px 0px;
	padding:0px;
	height:100%;
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
div.content div.cta.center div.img{ margin:0px;	}
div.content div.cta.access div.img{ background-image:url(../img/cta/bg_cta-access.jpg); }
div.content div.cta.news div.img{ background-image:url(../img/cta/bg_cta-news.jpg); }
div.content div.cta.home div.img{ background-image:url(../img/cta/bg_cta-home.jpg); }
div.content div.cta div.img::before{
	position:absolute;
	content:'';
	top:0px;
	bottom:0px;
	right:0px;
	left:0px;
	background-color:rgba(76,67,72,0.3);
}
div.content div.cta div.text{
	position:absolute;
	top:0px;
	right:0px;
	margin:0px;
	padding:0px;
	height:790px;
	width:425px;
	line-height:790px;
	background-color:#f2f1f3;
	background-image:url(../img/bg_pattern-grey.jpg);
	background-repeat:repeat;	
}
div.content div.cta.center div.text{
	top:80px;
	right:auto;
	left:50%;
	margin-left:-212px;
	height:540px;
	line-height:540px;
}
div.content div.cta div.text section{
	display:inline-block;
	vertical-align:middle;
	margin:0px;
	padding:100px 75px 0px 75px;
	line-height:normal;
	text-align:center;
}
div.content div.cta div.text section h3{
	position:relative;
	margin:0px 0px 25px 0px;
	padding:0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:15px;
	line-height:24px;
	font-weight:700;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:2px;
	color:rgba(33,26,38,1);	
}
div.content div.cta div.text section h3::before{
	content:'';
	position:absolute;
	top:-100px;
	left:50%;
	margin-left:-35px;
	height:71px;
	width:70px;
	background-repeat:no-repeat;
}
div.content div.cta.access div.text section h3::before{ background-image:url(../img/img_cta-marker.png); }
div.content div.cta.news div.text section h3::before{ background-image:url(../img/img_cta-art.png); }
div.content div.cta.home div.text section h3::before{ background-image:url(../img/img_cta-home.png); }
div.content div.cta div.text section p{
	margin:0px;
	padding:0px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:13px;
	line-height:24px;
	font-weight:normal;
	text-decoration:none;
	color:rgba(33,26,38,0.8);	
}
div.content div.cta div.text section a.btn-empty{
	position:relative;
	z-index:5;
	display:block;
	margin:50px 25px 0px 25px;
	padding:13px 0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:1px;	
	text-decoration:none;			
}
body.de div.content div.cta div.text section a.btn-empty{ margin:50px 18px 0px 18px; }
/** CONTENT : FOOTER **/
div.content div.social{
	margin:0px;
	padding:85px 0px;
	text-align:center;
}
div.content div.social h3{
	margin:0px 0px 10px 0px;
	padding:0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:15px;
	font-weight:700;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:2px;
	color:rgba(33,26,38,1);	
}
div.content div.social a{
	position:relative;
	display:inline-block;
	margin:0px 20px;
	padding:0px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
}
div.content div.social a span.container{ display:inline-block; overflow:hidden; }
div.content div.social a span.hover{
	position:relative;
	left:0px;
	top:0px;	
	display:block;	
	color:rgba(33,26,38,0.8);
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: easeOutQuart;
    transition-timing-function: easeOutQuart;		
}
body.no-touch div.content div.social a:hover span.hover{
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
div.content div.social a span.hover:after{
	position:absolute;
	left:0px;
	top:0px;	
	display:block;	
	content: attr(data-hover);
	color:rgba(33,26,38,1);
	-webkit-transform: translateY(100%);
	transform: translateY(100%);	
}
div.content div.social a::before{
	position:absolute;
	top:50%;
	left:-22px;
	content:'';
	margin-top:-5px;
	height:5px;
	width:5px;
	background-color:rgba(33,26,38,1);	
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);	
}
div.content div.social a.facebook::before{ display:none; }
div.content div.review,
div.content div.newsletter,
div.content div.contact{
	position:relative;
	float:left;
	margin:0px;
	padding:155px 0px 0px 0px;
	height:470px;
	width:33%;
	text-align:center;
	border-top:1px solid #e8e8e9;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;		
}
div.content div.contact{ 
	width:34%;
	border-left:1px solid #e8e8e9;
}
div.content div.newsletter{ border-left:1px solid #e8e8e9; }
div.content div.review h3,
div.content div.newsletter h3,
div.content div.contact h3{
	position:relative;
	margin:0px 0px 20px 0px;
	padding:0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:15px;
	font-weight:700;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:2px;
	color:rgba(33,26,38,1);	
}
div.content div.review h3::before,
div.content div.newsletter h3::before,
div.content div.contact h3::before{
	content:'';
	position:absolute;
	top:-80px;
	left:50%;
	margin-left:-25px;
	height:50px;
	width:50px;
	background-image:url(../img/sp_footer-icon.jpg);
	background-repeat:no-repeat;
}
div.content div.review h3::before{ background-position:0px 0px; }
div.content div.newsletter h3::before{ background-position:-50px 0px; }
div.content div.contact h3::before{ background-position:-100px 0px; }
div.content div.review p,
div.content div.newsletter p,
div.content div.contact p,
div.content div.contact p a{
	margin:0px;
	padding:0px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:13px;
	line-height:22px;
	font-weight:normal;
	text-decoration:none;
	color:rgba(33,26,38,0.8);	
}
div.content div.review p,
div.content div.newsletter p{ margin:0px 15%; }
div.content div.contact p{ margin:0px 5%; }
div.content div.review a.btn-empty,
div.content div.newsletter a.btn-empty,
div.content div.contact a.btn-empty{
	position:absolute;
	display:block;
	bottom:110px;
	left:25%;
	right:25%;
	margin:0px;
	padding:13px 0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:1px;	
	text-decoration:none;			
}
div.content div.contact a.mobile-address{ display:none; }
/** FOOTER **/
div.footer{
	display:none;
	position:fixed;
	bottom:60px;
	left:5%;
	right:5%;
	margin:0px auto;
	padding:0px;
}

@media screen and (min-width: 1930px) {
	div.footer{
		bottom:100px;
		width:1700px;
	}
}
div.footer div.side-left,
div.footer div.side-middle,
div.footer div.side-right{
	position:relative;	
	float:left;
	margin:0px;
	padding:0px;
	width:33%;
}
div.footer div.side-middle {
	text-align: center;
}
div.footer img.footer-hcc {
	width: auto;
	height: 60px;
}
div.footer div.side-left div.link-cross-sellling{
	margin:0px;
	padding:0px;
	cursor:pointer;
}
div.footer div.side-left div.link-cross-sellling h2{
	position:relative;
	display:inline-block;
	margin:0px 0px 0px 50px;
	padding:0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:16px;
	font-weight:normal;
	text-transform:uppercase;
	letter-spacing:0.5px;
	color:rgba(255,255,255,0.5);	
}
div.footer div.side-left div.link-cross-sellling h2::before{
	content:'';
	position:absolute;
	top:0px;
	left:-50px;
	height:35px;
	width:38px;
	background-image:url(../img/img_logo-beuve.png);
	background-repeat:no-repeat;
	opacity:0.5;	
}
div.footer div.side-left div.link-cross-sellling h2::after{
	content:'';
	position:absolute;
	top:3px;
	right:-70px;
	height:10px;
	width:60px;
	background-image:url(../img/img_star.png);
	background-repeat:repeat-x;
	opacity:0.5;	
}
div.footer div.side-left div.link-cross-sellling p{
	margin:0px 0px 0px 50px;
	padding:0px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:11px;
	font-style:italic;
	font-weight:normal;
	color:rgba(255,255,255,0.25);		
}
div.footer div.side-right{
	padding-top:5px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:9px;
	font-weight:normal;
	text-decoration:none;
	text-transform:uppercase;
	text-align:right;
	color:rgba(255,255,255,0.5);	
}
div.footer div.side-right a{
	position:relative;
	overflow:hidden;
	display:inline-block;
	margin-left:6px;
	float:right;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:9px;
	font-weight:normal;
	text-decoration:none;
	text-transform:uppercase;
	color:rgba(255,255,255,0.5);
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;	
}
@media screen and (max-width: 1250px) {
	div.footer div.side-right a{
		float:none;
		margin:0px 3px;
	}
}
div.footer div.side-right a span{
	position:relative;
	left:0px;
	top:0px;	
	display:block;	
	color:rgba(255,255,255,0.6);
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: easeOutQuart;
    transition-timing-function: easeOutQuart;		
}
body.no-touch div.footer div.side-right a:hover span{
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
div.footer div.side-right a span:after{
	position:absolute;
	left:0px;
	top:0px;	
	display:block;	
	content: attr(data-hover);
	color:rgba(255,255,255,1);	
	-webkit-transform: translateY(100%);
	transform: translateY(100%);	
}
/** TOGGLE-CONTAINER **/
div.toggle-container{
	position:fixed;
	z-index:50;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	margin:0px;
	padding:0px;
	text-align:center;
	background-image:url(../img/bg_body.jpg);
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
	visibility:hidden;
	-webkit-transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);
	-moz-transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);
	-o-transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);
	transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);
	-webkit-transform: translateY(100%);
	transform: translateY(100%);							
}
div.toggle-container.open{
	visibility:visible;
	-webkit-transition: all 0.7s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-moz-transition: all 0.7s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-o-transition: all 0.7s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	transition: all 0.7s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-webkit-transform: translateY(0%);
	transform: translateY(0%);		
}
div.toggle-container a.logo{
	position:absolute;
	display:block;
	top:30px;
	left:50px;
	margin:0px;
	padding:0px;
	height:113px;
	width:180px;
	background-image:url(../img/img_logo.png);
	background-repeat:no-repeat;
	background-size:180px 113px;
	-webkit-transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);
	-moz-transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);
	-o-transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);
	transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);	
	-webkit-transform: translateY(100%);
	transform: translateY(100%);								
}
@media screen and (max-width: 1100px) {
	div.toggle-container a.logo{
		top:20px;
		left:30px;
	}
}
div.toggle-container.open a.logo{
	-webkit-transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-moz-transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-o-transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-webkit-transform: translateY(0%);
	transform: translateY(0%);		
}
div.toggle-container a.close{
	position:absolute;
	overflow:hidden;
	display:block;
	top:60px;
	right:60px;
	margin:0px;
	padding:0px;
	height:50px;
	width:50px;
	border:3px solid #fff;
	-webkit-transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);
	-moz-transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);
	-o-transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);
	transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);	
	-webkit-transform: rotate(45deg) translate(50px,100%);
	transform: rotate(45deg) translate(50px,100%);									
}
@media screen and (max-width: 1100px) {
	div.toggle-container a.close{
		top:40px;
		right:40px;
	}
}
div.toggle-container.open a.close{
	-webkit-transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-moz-transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-o-transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-webkit-transform: rotate(45deg) translate(0%,0%);
	transform: rotate(45deg) translate(0%,0%);		
}
div.toggle-container a.close span{
	position:absolute;
	top:50%;
	left:50%;
	display:block;
	margin:-1px 0px 0px -12px;
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: easeOutQuart;
    transition-timing-function: easeOutQuart;		
}
div.toggle-container a.close span.second{	
	-webkit-transform: translate(50px,50px);
	transform: translate(50px,50px);
}
div.toggle-container a.close span:before,
div.toggle-container a.close span:after{
	content:'';
	position:absolute;
	top:0px;
	left:0px;
	display:block;
	width:25px;
	height:2px;
	background-color:#fff;
}
div.toggle-container a.close span:after{ 
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
body.no-touch div.toggle-container a.close:hover span.first{
	-webkit-transform: translate(-50px,-50px);
	transform: translate(-50px,-50px);	
}
body.no-touch div.toggle-container a.close:hover span.second{
	-webkit-transform: translate(0px,0px);
	transform: translate(0px,0px);	
}
div.toggle-container section{
	display:inline-block;	
	vertical-align:middle;	
	line-height:normal;
	text-align:center;
	-webkit-transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);
	-moz-transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);
	-o-transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);
	transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);		
	-webkit-transform: translateY(100%);
	transform: translateY(100%);								
}
div.toggle-container.open section{
	-webkit-transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-moz-transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-o-transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-webkit-transform: translateY(0%);
	transform: translateY(0%);		
}
div.toggle-container.language section a,
div.toggle-container.menu section a{
	display:inline-block;
	overflow:hidden;
	margin:0px;
	padding:0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:24px;
	font-weight:normal;
	text-decoration:none;
	text-transform:uppercase;		
}
div.toggle-container.language section a span,
div.toggle-container.menu section a span{
	position:relative;
	left:0px;
	top:0px;	
	display:block;	
	color:rgba(255,255,255,0.6);
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: easeOutQuart;
    transition-timing-function: easeOutQuart;		
}
body.fr div.toggle-container.language section a.fr span,
body.us div.toggle-container.language section a.us span,
body.de div.toggle-container.language section a.de span,
body.it div.toggle-container.language section a.it span,
body.es div.toggle-container.language section a.es span,
body.br div.toggle-container.language section a.br span,
body.jp div.toggle-container.language section a.jp span,
body.no-touch div.toggle-container.language section a:hover span,
body.page-1 div.toggle-container.menu section a.page-1 span,
body.rooms div.toggle-container.menu section a.rooms span,
body.page-3 div.toggle-container.menu section a.page-3 span,
body.page-4 div.toggle-container.menu section a.page-4 span,
body.photos div.toggle-container.menu section a.photos span,
body.offers div.toggle-container.menu section a.offers span,
body.posts div.toggle-container.menu section a.posts span,
body.google_maps div.toggle-container.menu section a.google_maps span,
body.contact div.toggle-container.menu section a.contact span,
body.no-touch div.toggle-container.menu section a:hover span{
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
div.toggle-container.language section a span:after,
div.toggle-container.menu section a span:after{
	position:absolute;
	left:0px;
	top:0px;	
	display:block;	
	content: attr(data-hover);
	color:rgba(255,255,255,1);	
	-webkit-transform: translateY(100%);
	transform: translateY(100%);	
}
div.toggle-container section div.container{
	display:inline-block;
	margin-left:60px;
	width:840px;
	text-align:left;
}
div.toggle-container.currency section div.side,
div.toggle-container.currency section a.currency.float{ float:left; }
div.toggle-container.currency section a.currency{
	position:relative;
	display:block;
	overflow:hidden;
	margin:15px 0px 0px 0px;
	padding:0px 0px 0px 40px;
	width:240px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:normal;
	text-decoration:none;
	text-transform:uppercase;		
}
div.toggle-container.currency section a.currency span.symbol{
	position:absolute;
	left:0px;
	display:block;
	width:30px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:normal;
	text-decoration:none;
	text-transform:uppercase;
	text-align:center;
	color:#fff;	
}
div.toggle-container.currency section a.currency span.hover{
	position:relative;
	left:0px;
	top:0px;	
	display:block;	
	color:rgba(255,255,255,0.6);
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: easeOutQuart;
    transition-timing-function: easeOutQuart;		
}
body.no-touch div.toggle-container.currency section a.currency:hover span.hover{
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
div.toggle-container.currency section a.currency span:after{
	position:absolute;
	left:0px;
	top:0px;	
	display:block;	
	content: attr(data-hover);
	color:rgba(255,255,255,1);	
	-webkit-transform: translateY(100%);
	transform: translateY(100%);	
}
div.toggle-container section div.booking-container{
	display:inline-block;
	margin-top:-81px;
	height:545px;
	width:500px;
	background-color:#FFFFFF;
	-webkit-box-shadow:1px 1px 2px rgba(0,0,0,0.3);
	box-shadow:1px 1px 2px rgba(0,0,0,0.3);
}
div.toggle-container section div.booking-container form{ position:absolute; visibility:hidden; }
div.toggle-container section div.booking-container div.labels{
	display:block;
	margin:0px;
	padding:0px;
}
div.toggle-container section div.booking-container div.labels div.date,
div.toggle-container section div.booking-container div.labels div.night{
	float:left;
	margin:0px;
	padding:16px 0px 14px 0px;
	width:50%;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:normal;
	font-style:normal;
	text-transform:uppercase;
	letter-spacing:0.5px;
	color:rgba(255,2555,255,0.5);	
	background-color:#29212d;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;	
}
div.toggle-container section div.booking-container div.labels div.date{ border-right:1px solid rgba(255,255,255,0.1); }
div.toggle-container section div.booking-container div.links{
	display:block;
	margin:0px;
	padding:0px;
}
div.toggle-container section div.booking-container div.links a.date,
div.toggle-container section div.booking-container div.links div.night{
	position:relative;
	float:left;
	display:block;
	margin:0px;
	padding:0px;
	height:130px;
	width:50%;
	text-decoration:none;
	background-color:#312837;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;	
}
div.toggle-container section div.booking-container div.links a.date{ border-right:1px solid rgba(255,255,255,0.1); }
div.toggle-container section div.booking-container div.links a.date div.diamond,
div.toggle-container section div.booking-container div.links div.night a.diamond{
	position:absolute;
	right:45px;
	display:block;
	height:20px;
	width:20px;
	text-decoration:none;
	background-color:#3d3442;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);	
}
div.toggle-container section div.booking-container div.links a.date div.diamond{
	margin-top:-14px;
	top:50%;
}
div.toggle-container section div.booking-container div.links div.night a.diamond.more{ top:35px; }
div.toggle-container section div.booking-container div.links div.night a.diamond.less{ bottom:35px; }
div.toggle-container section div.booking-container div.links div.night a.diamond.disable{
	cursor:default; 
	opacity:0.3;
}
div.toggle-container section div.booking-container div.links a.date div.diamond span{
	position:absolute;
	top:5px;
	left:50%;
	display:block;
	margin:0px 0px 0px -5px;
	height:7px;
	width:7px;
	border:2px solid rgba(255,255,255,0.6);
	border-left:none;
	border-top:none;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;		
}
body.no-touch div.toggle-container section div.booking-container div.links a.date:hover div.diamond span{ 
	border-right:2px solid rgba(255,255,255,1);
	border-bottom:2px solid rgba(255,255,255,1);
}
div.toggle-container section div.booking-container div.links div.night a.diamond.more span,
div.toggle-container section div.booking-container div.links div.night a.diamond.less span{
	position:absolute;
	top:50%;
	left:50%;
	display:block;
	margin:-1px 0px 0px -5px;
	height:2px;
	width:10px;
	background-color:rgba(255,255,255,0.6);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);	
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;		
}
div.toggle-container section div.booking-container div.links div.night a.diamond.more span::before{
	position:absolute;
	content:'';
	top:50%;
	left:50%;
	display:block;
	margin:-1px 0px 0px -5px;
	height:2px;
	width:10px;
	background-color:rgba(255,255,255,0.6);
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;			
}
body.no-touch div.toggle-container section div.booking-container div.links div.night a.diamond.more:hover span,
body.no-touch div.toggle-container section div.booking-container div.links div.night a.diamond.less:hover span,
body.no-touch div.toggle-container section div.booking-container div.links div.night a.diamond.more:hover span::before{ background-color:rgba(255,255,255,1); }
div.toggle-container section div.booking-container div.links a.date span.top,
div.toggle-container section div.booking-container div.links div.night span.top{
	display:block;
	margin:10px 0px 0px 0px;
	padding:0px;
	font-family:'Playfair Display', Arial, Helvetica, sans-serif;
	font-size:52px;
	font-weight:normal;
	font-style:normal;
	letter-spacing:normal;
	color:#fff;
	text-align:center;
	-webkit-font-feature-settings: 'lnum';
	-moz-font-feature-settings: 'lnum';
	-ms-font-feature-settings: 'lnum';
	font-feature-settings: 'lnum';		
}
div.toggle-container section div.booking-container div.links a.date span.bottom,
div.toggle-container section div.booking-container div.links div.night span.bottom{
	display:block;
	margin:0px;
	padding:0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:normal;
	font-style:normal;
	text-transform:uppercase;
	letter-spacing:0.5px;
	color:#fff;
	text-align:center;
	-webkit-font-feature-settings: 'lnum';
	-moz-font-feature-settings: 'lnum';
	-ms-font-feature-settings: 'lnum';
	font-feature-settings: 'lnum';		
}
div.toggle-container section div.booking-container div.mentions{
	display:block;
	margin:0px;
	padding:30px 30px 20px 30px;
}
div.toggle-container section div.booking-container div.mentions div.line{
	position:relative;
	display:block;
	margin:0px;
	padding:16px 15px 14px 45px;
	text-align:left;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:normal;
	font-style:italic;
	color:rgba(49,40,55,0.8);	
	border-bottom:1px solid rgba(49,40,55,0.2);
}
div.toggle-container section div.booking-container div.mentions div.line::before{
	position:absolute;
	top:50%;
	left:15px;
	content:'';
	background-repeat:no-repeat;
	opacity:0.3;		
}
div.toggle-container section div.booking-container div.mentions div.line.official::before{
	margin:-7px 0px 0px 0px;
	height:15px;
	width:17px;
	background-image:url(../img/img_booking-official.png);	
}
div.toggle-container section div.booking-container div.mentions div.line.star::before{
	margin:-9px 0px 0px 0px;
	height:16px;
	width:16px;
	background-image:url(../img/img_booking-star.png);	
}
div.toggle-container section div.booking-container div.mentions div.line.secure::before{
	margin:-8px 0px 0px 2px;
	height:15px;
	width:12px;
	background-image:url(../img/img_booking-secure.png);	
}
div.toggle-container section div.booking-container div.mentions div.line::after{
	position:absolute;
	top:50%;
	right:15px;
	content:'';
	margin:-7px 0px 0px 0px;
	height:14px;
	width:15px;
	background-image:url(../img/img_booking-check.png);
	background-repeat:no-repeat;		
}
div.toggle-container section div.booking-container div.mentions div.line.price{
	padding:21px 15px 19px 16px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:normal;
	font-style:normal;
	text-transform:uppercase;
	letter-spacing:0.5px;
	color:rgba(49,40,55,1);	
}
div.toggle-container section div.booking-container div.mentions div.line.price::before,
div.toggle-container section div.booking-container div.mentions div.line.price::after{ display:none; }
div.toggle-container section div.booking-container div.mentions div.line.price span.best-price{
	position:absolute;
	top:5px;
	right:15px;
	display:block;
	width:200px;
	font-family:'Playfair Display', Arial, Helvetica, sans-serif;
	font-size:30px;
	font-weight:normal;
	font-style:normal;
	letter-spacing:normal;
	text-align:right;
	color:rgba(49,40,55,1);
	-webkit-font-feature-settings: 'lnum';
	-moz-font-feature-settings: 'lnum';
	-ms-font-feature-settings: 'lnum';
	font-feature-settings: 'lnum';		
}
div.toggle-container section div.booking-container div.mentions div.line.price span.best-price span.loader{
	position:absolute;
	display:block;
	top:14px;
	right:0px;
	margin:0px 0px 0px 0px;
	padding:0px;
	height:12px;
	width:12px;
	border:3px solid rgba(49,40,55,1);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-animation: rotating 2s linear infinite;
	-moz-animation: rotating 2s linear infinite;
	-ms-animation: rotating 2s linear infinite;
	-o-animation: rotating 2s linear infinite;
	animation: rotating 2s linear infinite;										
}
div.toggle-container section div.booking-container a.btn{
	display:inline-block;
	margin:0px;
	padding:21px 50px 17px 50px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:normal;
	text-decoration:none;
	text-transform:uppercase;
	letter-spacing:0.5px;
	background-color:#312837;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;			
}
div.toggle-container section div.booking-container a.btn:hover{ background-color:#3c3343; }
div.toggle-container section div.booking-container a.btn span.container{
	display:inline-block;
	overflow:hidden;	
}
div.toggle-container section div.booking-container a.btn span.container span.hover{
	position:relative;
	left:0px;
	top:0px;	
	display:block;	
	color:#fff;
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: easeOutQuart;
    transition-timing-function: easeOutQuart;		
}
body.no-touch div.toggle-container section div.booking-container a.btn:hover span.container span.hover{
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
div.toggle-container section div.booking-container a.btn span.container span.hover:after{
	position:absolute;
	left:0px;
	top:0px;	
	display:block;	
	content: attr(data-hover);	
	-webkit-transform: translateY(100%);
	transform: translateY(100%);	
}
div.toggle-container section div.booking-container div.bottom-links{
	display:block;
	margin:20px 0px 0px 0px;
	padding:0px;
}
div.toggle-container section div.booking-container div.bottom-links a{
	position:relative;
	float:left;
	display:block;
	margin:0px;
	padding:0px;
	width:49%;
	text-align:center;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:normal;
	font-style:italic;
	color:rgba(49,40,55,0.8);
	text-decoration:none;	
}
div.toggle-container section div.booking-container div.bottom-links a.gds{
	padding:7px 0px;
	border-left:1px solid rgba(49,40,55,0.5);	
}
body.de div.toggle-container section div.booking-container div.bottom-links a.gds,
body.jp div.toggle-container section div.booking-container div.bottom-links a.gds{ border-left:none; }
div.toggle-container div.booking-footer{
	position:absolute;
	left:0px;
	right:0px;
	bottom:0px;
	display:block;
	height:80px;
	line-height:normal;
	background-color:rgba(255,255,255,0.1);
	border-top:1px solid rgba(255,255,255,0.2);
	-webkit-transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);
	-moz-transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);
	-o-transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);
	transition: all 0.7s cubic-bezier(0.895, 0.030, 0.685, 0.220);	
	-webkit-transform: translateY(100%);
	transform: translateY(100%);								
}
div.toggle-container.open div.booking-footer{
	-webkit-transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-moz-transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-o-transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
	-webkit-transform: translateY(0%);
	transform: translateY(0%);		
}
div.toggle-container div.booking-footer div.side-center{
	display:block;
	margin:0px auto;
	padding:0px;
	height:100%;
	width:920px;	
}
div.toggle-container div.booking-footer div.side-center div.side-left,
div.toggle-container div.booking-footer div.side-center div.side-right{
	float:left;
	display:block;
	margin:0px;
	padding:0px;
	height:100%;
	width:50%;	
}
div.toggle-container div.booking-footer div.side-center div.side-left{ text-align:left; cursor:pointer; }
div.toggle-container div.booking-footer div.side-center div.side-right{ text-align:right; }
div.toggle-container div.booking-footer div.side-center div.side-left h2{
	position:relative;
	display:inline-block;
	margin:20px 0px 0px 50px;
	padding:0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:16px;
	font-weight:normal;
	text-transform:uppercase;
	letter-spacing:0.5px;
	color:rgba(255,255,255,0.5);	
}
div.toggle-container div.booking-footer div.side-center div.side-left h2::before{
	content:'';
	position:absolute;
	top:0px;
	left:-50px;
	height:35px;
	width:38px;
	background-image:url(../img/img_logo-beuve.png);
	background-repeat:no-repeat;
	opacity:0.5;	
}
div.toggle-container div.booking-footer div.side-center div.side-left h2::after{
	content:'';
	position:absolute;
	top:3px;
	right:-70px;
	height:10px;
	width:60px;
	background-image:url(../img/img_star.png);
	background-repeat:repeat-x;
	opacity:0.5;	
}
div.toggle-container div.booking-footer div.side-center div.side-left p{
	margin:0px 0px 0px 50px;
	padding:0px;
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
	font-size:11px;
	font-style:italic;
	font-weight:normal;
	color:rgba(255,255,255,0.25);		
}
div.toggle-container div.booking-footer div.side-center div.side-right a{
	position:relative;
	display:inline-block;
	margin:14px 0px 0px 0px;
	padding:4px 20px 8px 210px;
	text-decoration:none;			
}
body.us div.toggle-container div.booking-footer div.side-center div.side-right a{ padding-left:180px; }
body.de div.toggle-container div.booking-footer div.side-center div.side-right a{ padding-left:230px; }
body.it div.toggle-container div.booking-footer div.side-center div.side-right a{ padding-left:240px; }
body.br div.toggle-container div.booking-footer div.side-center div.side-right a{ padding-left:200px; }
body.jp div.toggle-container div.booking-footer div.side-center div.side-right a{ padding-left:90px; }
div.toggle-container div.booking-footer div.side-center div.side-right a span.label{
	position:absolute;
	top:50%;
	left:20px;
	display:block;
	margin:-7px 0px 0px 0px;
	padding:0px;
	font-family:'Montserrat', Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:normal;
	text-transform:uppercase;
	text-decoration:none;
	letter-spacing:0.5px;				
}
div.toggle-container div.booking-footer div.side-center div.side-right a span.best-price{
	position:relative;
	display:block;
	margin:0px;
	padding:0px;
	height:35px;
	min-width:15px;
	font-size:25px;
	font-family:'Playfair Display', Arial, Helvetica, sans-serif;
	font-weight:normal;
	-webkit-font-feature-settings: 'lnum';
	-moz-font-feature-settings: 'lnum';
	-ms-font-feature-settings: 'lnum';
	font-feature-settings: 'lnum';
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;			
}
div.toggle-container div.booking-footer div.side-center div.side-right a span.best-price span.loader{
	position:absolute;
	display:block;
	top:50%;
	margin:-5px 0px 0px 0px;
	padding:0px;
	height:10px;
	width:10px;
	border:2px solid rgba(255,255,255,0.5);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-animation: rotating 2s linear infinite;
	-moz-animation: rotating 2s linear infinite;
	-ms-animation: rotating 2s linear infinite;
	-o-animation: rotating 2s linear infinite;
	animation: rotating 2s linear infinite;										
}
div.toggle-container div.booking-footer div.side-center div.side-right a:hover span.best-price span.loader{
	border:2px solid rgba(33,26,38,1);
}
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/** X4 **/
@media (min-resolution: 192dpi), (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
	div.header header.topbar div.side-right a.language:before,
	div.header header.topbar div.side-right a.currency:before{
		background-image:url(../img/img_topbar-arrow-x4.png);
		background-size:5px 3px;	
	}
	div.infos-box div.getvisits:before{
		background-image:url(../img/img_info-persons-x4.png);
		background-size:20px 20px;
	}
	div.infos-box div.getlastbooking:before{
		background-image:url(../img/img_info-booking-x4.png);
		background-size:21px 18px;
	}
	div.infos-box div.message:before,
	div.infos-box div.roomnext:before{
		background-image:url(../img/img_info-cookie-x4.png);
		background-size:20px 20px;
	}
	div.dialog-overlay div.dialog.contact h2::before{
		background-image:url(../img/sp_footer-icon-x4.jpg);
		background-size:150px 50px;
	}
	div.content div.alert span {
		background-image:url(../img/img_error-form-white-x4.png);
		background-size:25px 24px;
	}
	div.header header.banner a.logo{
		background-image:url(../img/img_logo-x4.png);
		background-size:340px 214px;
	}
	div.nav-menu nav.nav-menu a.booking span.icon{
		background-image:url(../img/img_calandar-x4.png);
		background-size:18px 19px;
	}
	div.header header.banner.error div.error-container span.error400{
		background-image:url(../img/img_error-400-x4.png);
		background-size:259px 259px;
	}
	div.header header.banner.error div.error-container span.error500{
		background-image:url(../img/img_error-500-x4.png);
		background-size:259px 259px;
	}
	div.content article a.cookie-consent-link.locked{ 
		background-image:url(../img/img_cookies-lock-x4.png);
		background-size:70px 71px;
	}
	div.content article a.cookie-consent-link.analytics{
		background-image:url(../img/img_cookies-empty-x4.png);
		background-size:70px 71px;
	}
	div.content article div.container-browser-link a.browser-link.firefox{ 
		background-image:url(../img/img_browsers-firefox-x4.png);
		background-size:70px 71px;
	}
	div.content article div.container-browser-link a.browser-link.ie{ 
		background-image:url(../img/img_browsers-ie-x4.png);
		background-size:70px 71px;
	}
	div.content article div.container-browser-link a.browser-link.chrome{ 
		background-image:url(../img/img_browsers-chrome-x4.png);
		background-size:70px 71px;
	}
	div.content article div.container-browser-link a.browser-link.safari{
		background-image:url(../img/img_browsers-safari-x4.png);
		background-size:70px 71px;
	}
	div.content article.contact div.form-part div.side-right div.center h2::before{
		background-image:url(../img/img_contact-write-x4.png);
		background-size:70px 71px;
	}
	div.content article.contact div.form-part div.side-right div.center form div.input span.icon-error{
		background-image:url(../img/img_error-form-x4.png);
		background-size:24px 24px;
	}
	div.content article.contact div.form-part div.side-right div.center form div.input input[type=text]{
		background-image:url(../img/img_contact-name-x4.png);
		background-size:15px 14px;
	}
	div.content article.contact div.form-part div.side-right div.center form div.input.error input[type=text]{
		background-image:url(../img/img_contact-name-error-x4.png);
		background-size:15px 14px;
	}
	div.content article.contact div.form-part div.side-right div.center form div.input input[type=email]{
		background-image:url(../img/img_contact-email-x4.png);
		background-size:15px 12px;
	}
	div.content article.contact div.form-part div.side-right div.center form div.input.error input[type=email]{
		background-image:url(../img/img_contact-email-error-x4.png);
		background-size:15px 12px;
	}
	div.content article.contact div.form-part div.side-right div.center form div.input textarea{
		background-image:url(../img/img_contact-message-x4.png);
		background-size:18px 12px;
	}
	div.content article.contact div.form-part div.side-right div.center form div.input.error textarea{
		background-image:url(../img/img_contact-message-error-x4.png);
		background-size:18px 12px;
	}
	div.content article.newsletter div.side-right form div.input span.icon-error{
		background-image:url(../img/img_error-form-x4.png);
		background-size:24px 24px;
	}
	div.content article.newsletter div.side-right form div.input input[type=email]{
		background-image:url(../img/img_contact-email-x4.png);
		background-size:15px 12px;
	}
	div.content article.newsletter div.side-right form div.input.error input[type=email]{
		background-image:url(../img/img_contact-email-error-x4.png);
		background-size:15px 12px;
	}
	div.content article.reviews div.reviews-container div.review-brick div.review-content h3:after{
		background-image:url(../img/sp_travel-rate-x4.jpg);
		background-size:64px 72px;
	}
	div.content article.reviews div.reviews-container div.review-brick div.review-content h4:after{
		background-image:url(../img/sp_travel-rate-x4.jpg);
		background-size:64px 72px;
	}
	div.content article.access div#map-canvas .infos-content span.icon{
		background-image:url(../img/maps/sp_map-small-x4.jpg);
		background-size:55px 440px;
	}
	div.content article.access div#map-canvas .infos-content.hotel span.icon{ 
		background-image:url(../img/maps/img_hotel-icon-x4.png);
		background-size:55px 55px;
	}
	div.content article.access div#map-canvas .infos-content p.phone span{
		background-image:url(../img/maps/sp_bullemap-x4.jpg);
		background-size:48px 16px;
	}
	div.content article.access div#map-canvas .infos-content a.email span,
	div.content article.access div#map-canvas .infos-content a.website span{
		background-image:url(../img/maps/sp_bullemap-x4.jpg);
		background-size:48px 16px;
	}
	div.content article.access div#map-canvas .infos-content div.minutes span{
		background-image:url(../img/maps/img_distance-icon-x4.jpg);
		background-size:20px 20px;
	}
	div.content article.access div.favorite div.favorite-heart h3::before{
		background-image:url(../img/img_favorite-heart-x4.png);
		background-size:70px 71px;
	}
	div.content article.access div.favorite a.favorite-arrow.left{
		background-image:url(../img/img_favorite-arrow-left-x4.png);
		background-size:19px 35px;
	}
	div.content article.access div.favorite a.favorite-arrow.right{
		background-image:url(../img/img_favorite-arrow-right-x4.png);
		background-size:19px 35px;
	}
	div.content article.hotel div.services-content section h2::before{
		background-image:url(../img/img_icon-services-x4.png);
		background-size:70px 71px;	
	}
	div.content article.hotel div.review-image span.caesar{
		background-image:url(../img/img_caesar-x4.png);
		background-size:234px 212px;	
	}
	div.content article.hotel div.review-content section::before{
		background-image:url(../img/img_quote-x4.png);
		background-size:30px 30px;
	}
	div.content header.room-display nav.rooms-direction a.prev:before{
		background-image:url(../img/img_rooms-arrow-left-x4.png);
		background-size:8px 15px;
	}
	div.content header.room-display nav.rooms-direction a.next:before{
		background-image:url(../img/img_rooms-arrow-right-x4.png);
		background-size:8px 15px;
	}
	div.content article.rooms div.side-right span.persons::before{ 
		background-image:url(../img/img_room-persons-x4.png);
		background-size:45px 46px;
	}
	div.content article.rooms div.side-right span.beds::before{
		background-image:url(../img/img_room-beds-x4.png);
		background-size:45px 46px;
	}
	div.content article.rooms div.side-right span.surface::before{
		background-image:url(../img/img_room-surface-x4.png);
		background-size:45px 46px;
	}
	div.content header.offer-display nav.offers-direction a.prev:before{
		background-image:url(../img/img_rooms-arrow-left-x4.png);
		background-size:8px 15px;
	}
	div.content header.offer-display nav.offers-direction a.next:before{
		background-image:url(../img/img_rooms-arrow-right-x4.png);
		background-size:8px 15px;
	}
	div.content div.cta.access div.text section h3::before{
		background-image:url(../img/img_cta-marker-x4.png);
		background-size:70px 71px;	
	}
	div.content div.cta.news div.text section h3::before{ 
		background-image:url(../img/img_cta-art-x4.png);
		background-size:70px 71px;	
	}
	div.content div.review h3::before,
	div.content div.newsletter h3::before,
	div.content div.contact h3::before{
		background-image:url(../img/sp_footer-icon-x4.jpg);
		background-size:150px 50px;
	}
	div.footer div.side-left div.link-cross-sellling h2::before{
		background-image:url(../img/img_logo-beuve-x4.png);
		background-size:38px 35px;
	}
	div.footer div.side-left div.link-cross-sellling h2::after{
		background-image:url(../img/img_star-x4.png);
		background-size:15px 10px;		
	}
	div.toggle-container section div.booking-container div.mentions div.line.official::before{
		background-image:url(../img/img_booking-official-x4.png);	
		background-size:17px 15px;	
	}
	div.toggle-container section div.booking-container div.mentions div.line.star::before{
		background-image:url(../img/img_booking-star-x4.png);	
		background-size:16px 16px;	
	}
	div.toggle-container section div.booking-container div.mentions div.line.secure::before{
		background-image:url(../img/img_booking-secure-x4.png);
		background-size:12px 15px;	
	}
	div.toggle-container section div.booking-container div.mentions div.line::after{
		background-image:url(../img/img_booking-check-x4.png);
		background-size:15px 14px;		
	}
	div.toggle-container div.booking-footer div.side-center div.side-left h2::before{
		background-image:url(../img/img_logo-beuve-x4.png);
		background-size:38px 35px;	
	}
	div.toggle-container div.booking-footer div.side-center div.side-left h2::after{
		background-image:url(../img/img_star-x4.png);
		background-size:15px 10px;	
	}	
}
.recaptcha {
	padding-bottom: 20px;
}
.tooltip_templates {
	display: none;
}
.tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized .tooltipster-box {
	/*background: white;*/
	/*border: 1px solid black;*/
	/*border-radius: 1px;*/
	/*box-shadow: 5px 5px 2px 0 rgba(0,0,0,0.4);*/
}

.tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized .tooltipster-content {
	/*color: white;*/
	/*padding: 8px;*/
	font-family:'Merriweather', Arial, Helvetica, sans-serif;
}

/* BIG CALENDAR STYLE */
.big-calendar-link {
	font-family: 'Montserrat',Arial,Helvetica,sans-serif;
	font-size: 11px;
	font-weight: 600;
	position: absolute;
	top: 50%;
	right: 230px;
	display: flex;
	height: 36px;
	transform: translateY(-50%);
	overflow: hidden;
	color: #312837;
	text-transform: uppercase;
	text-decoration: none;

	align-items: center;
}

@media (min-width: 1367px) {
	div.nav-menu nav.nav-menu span.icon_information1 {
		right: 430px;		
	}

	.big-calendar-link {
		right: 310px;
	}
}

#availpro-root {
	position: absolute;
    top: -90px;
	left: -40px;
	height: 100%;
	opacity: 0.001;
	transform: scale(1.2);
}

#availpro-calendar-iframe {
	transform: scale(0.85);
    margin-top: -80px;
}

@media (min-width: 1025px) {
	#availpro-calendar-iframe {
		transform: scale(0.7);
		margin-top: -120px;
	}
}

@media (min-width: 1367px) {
	#availpro-calendar-iframe {
		transform: scale(1);
		margin-top: 0;
	}
}