/* effet rebond du point info*/
#ical{
     width:75px;
     height:75px;
     z-index:5;
     animation: bounce 1s ease infinite alternate;
}
@keyframes bounce{
     from {transform: translateY(0);}
     to   {transform: translateY(-15px);}
}
/*fin*/

.ps-container {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.ps-container > div {
	position: absolute;
	width: 50%;
}

.ps-container > div > div,
.ps-slidewrapper > nav,
.ps-slides > div {
	position: absolute;
}
.ps-contentwrapper {
	top: 0px;
	bottom: 0px;
	overflow: hidden;
	z-index: 9000;
}

.ps-content {
	background: #fff;/*806d5a*/
	width: 100%;
	height: 100%;
	padding: 30px;
	overflow:scroll;
}

.ps-content h2 {
	padding: 10px 10px;
	/*border-right: 1px solid #f2f2f2;
	border-bottom: 1px solid #f2f2f2;*/
	/*letter-spacing: 4px;
	margin: 10px 0 30px;
	text-align: right;
	font-weight: 700;
	text-transform:uppercase;*/
	font-size: 45px;
	font-weight:lighter;
}

.ps-content h3 {
	padding: 10px 15px;
	border-right: 1px solid #f2f2f2;
	border-bottom: 1px solid #f2f2f2;
	margin: 10px 0 30px;
	text-align: right;
	font-size:25px;
	font-weight: lighter;
	text-transform:uppercase;
}

h6 {
	letter-spacing: 4px;
	text-align: center;
	font-weight: 700;
	color:#555
}

.ps-content p {
	text-align: justify;
/*	border-left: 1px solid #f2f2f2;*/
}


p2 {
	text-align: justify;
}

.ps-content span.ps-price {
	float: left;
	margin: 10px;
	width: 140px;
	height: 140px;
	line-height: 20px;
	text-align: center;
	color: #fff;
	background: #dac5c4;
	font-size: 20px;
	font-weight: 350;
}

.ps-slidewrapper {
	right: 0px;
	top: 0px;
	height: 100%;
	overflow: hidden;
}

.ps-slides {
	top: 0px;
	bottom: 200px;
	width: 100%;
}

.ps-slides > div {
	width: 100%;
	height: 100%;
	box-shadow: inset 0 0 0 9999px rgba(0,2,34,0.1);
	/*box-shadow: inset 0 0 0 9999px rgba(179,157,250,0.1);*/
}

.ps-slidewrapper > nav {
	width: 100%;
	height: 200px;
	bottom: 0px;
	right: 0px;
	z-index: 800;
}

.ps-slidewrapper > nav > a {
	width: 50%;
	height: 100%;
	position: relative;
	float: left;
	box-shadow: inset 0 0 0 9999px rgba(227,226,222,1);
	border-right: 1px solid white;	
	/*box-shadow: inset 0 0 0 9999px rgba(207,227,206,0.8);*/
	outline: none;
}

.ps-slidewrapper > nav > a:first-child {
	box-shadow: inset 0 0 0 9999px rgba(227,226,222,1);
	/*box-shadow: inset 0 0 0 9999px rgba(233,217,141,0.8);*/
}

.no-touch .ps-slidewrapper > nav > a {
	-webkit-transition: box-shadow 0.4s ease-in-out;
	-moz-transition: box-shadow 0.4s ease-in-out;
	-ms-transition: box-shadow 0.4s ease-in-out;
	-o-transition: box-shadow 0.4s ease-in-out;
	transition: box-shadow 0.4s ease-in-out;
}


.ps-slidewrapper > nav > a:after {
	content: '';
	position: absolute;
	width: 100px;
	height: 100px;
	top: 50%;
	left: 50%;
	margin: -20px 0 0 -50px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	border-left: 3px solid #fff;
	border-top: 3px solid #fff;
}

.ps-slidewrapper > nav > a:first-child:after {
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
	margin: -80px 0 0 -50px;
}

.ps-slides > div,
.ps-slidewrapper > nav > a {
	background-color: #fff;
	background-position: center top;
	background-repeat: no-repeat;
	-webkit-background-size: auto 100%;
	-moz-background-size: auto 100%;
	background-size: auto 100%;
}

.ps-move {
	-webkit-transition: top 400ms ease-out;
	-moz-transition: top 400ms ease-out;
	-o-transition: top 400ms ease-out;
	-ms-transition: top 400ms ease-out;
	transition: top 400ms ease-out;
}


.cf:before,
.cf:after {
  content:"";
  display:table;
}
.cf:after {
  clear:both;
}
.droite {
  float:right;
}
 
.oModal {
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity:0;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none;
}
 
.oModal:target {
  opacity:1;
  pointer-events: auto;
}
 
.oModal:target > div {
  margin: 10% auto;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
 
.oModal > div {
  max-width: 600px;
  position: relative;
  margin: 1% auto;
  padding: 8px 8px 8px 8px;
  border-radius: 5px;
  background: #eee;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
 
.oModal > div header,.oModal > div footer {
  border-bottom: 1px solid #e7e7e7;
  border-radius: 5px 5px 0 0;
}
.oModal > div h2 {
  margin:0;
}
 
.oModal > div .btn {
  float:right;
}


.more p.hidetext{
  display: none
}
.more a.hidebutton span.moins{
  display: none;
  color:#000000;
}
.more.read p.hidetext{
  display: block; 
}
.more.read a.hidebutton span.moins:hover{
  display: block;
}
.more.read a.hidebutton span.plus{
  display: none;
}


.more p2.hidetext{
  display: none
}
.more a.hidebutton span.moins{
  display: none;
}
.more.read p2.hidetext{
  display: block; 
}
.more.read a.hidebutton span.moins{
  display: block;
}
.more.read a.hidebutton span.plus{
  display: none;
}



@media screen and (max-width: 860px) {

	.js .ps-container > div {
		width: 100%;
	}

	.js .ps-header {
		height: 50px;
	}

	.js .ps-header h1 {
		line-height: 50px;
		padding: 0px 20px;
		letter-spacing: 4px;
	}

	.js .ps-slides {
		bottom: 320px;
		top: 50px;
	}

	.js .ps-slidewrapper > nav {
		height: 100px;
	}

	.js .ps-contentwrapper {
		top: auto;
		height: 220px;
		bottom: 100px;
	}

	.js .ps-content {
		padding: 10px;
	}

	.js .ps-content h2 {
		border-right: none;
		font-size: 18px;
		margin: 10px 0;
		padding-top: 0;
	}

	.js .ps-content span.ps-price {
		font-size: 18px;
		width: 50px;
		height: 50px;
		line-height: 50px;
		font-weight: 700;
		margin-bottom: 0;
	}

	.js .ps-content p {
		line-height: 20px;
		border: none;
		padding: 5px 10px;
		height: 80px;
		overflow-y: scroll;
	}

	.js .ps-content a:last-child {
		font-size: 13px;
		margin: 10px 20px 0 0;
	}
}





/* partie rajouté en test pour la galerie chateau */


.lb-album li{/* position des miniatures les unes par rapport aux autres */
	float: left;
	margin: 5px;
	position: relative;
	z-index:auto;
}
.lb-album li > a,/* positionne les images miniatures et les hover sur les carrés verts */
.lb-album li > a img{
	display: block;
	z-index:auto;

}
.lb-album li > a{
	width: 100px;
	height: 100px;
	position: relative;
	padding: 10px;
	-webkit-box-shadow: 1px 1px 2px #fff, 1px 1px 2px rgba(158,111,86,0.3) inset;
	-moz-box-shadow: 1px 1px 2px #fff, 1px 1px 2px rgba(158,111,86,0.3) inset;
	box-shadow: 1px 1px 2px #fff, 1px 1px 2px rgba(158,111,86,0.3) inset;
	z-index:auto;

}
.lb-album li > a span{
	position: absolute;/* positionne les textes hover sur les miniatures */
	width: 100px;
	height: 100px;
	top: 10px;
	left: 10px;
	text-align: center;
	line-height: 100px;
	color: rgba(27,54,81,0.8);
	text-shadow: 0px 1px 1px rgba(255,255,255,0.6);
	font-size: 24px;
	opacity: 0;
	filter: alpha(opacity=0); /* internet explorer */
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0)"; /*IE8*/
	background: rgb(186,185,35);

	-webkit-transition: opacity 0.3s linear;
	-moz-transition: opacity 0.3s linear;
	-o-transition: opacity 0.3s linear;
	-ms-transition: opacity 0.3s linear;
	transition: opacity 0.3s linear;
	z-index:auto;

}
.lb-album li > a:hover span{
	opacity: 1;
	filter: alpha(opacity=99); /* internet explorer */
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=99)"; /*IE8*/
	z-index:auto;

}
.lb-overlay{/* centre la modale et la photo */
	width: 0px;
	height: 0px;
	position: fixed;
  	overflow:scroll;	
  	left: 0px;
	top: 0px;
	padding: 0px;
	z-index: 99;
	text-align: center; /* centre la photo */
	background: rgb(197,188,168);
	background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(197,188,168,2) 100%);
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(197,188,168,2)));
	background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(197,188,168,2) 100%);
	background: -o-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(197,188,168,2) 100%);
	background: -ms-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(197,188,168,2) 100%);
	background: radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%,rgba(197,188,168,2) 100%);
}
.lb-overlay > div{
	/* anciennement ici position: relative; */
	color: rgba(27,54,81,0.8);
	opacity: 0;
	filter: alpha(opacity=0); /* internet explorer */
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0)"; /*IE8*/
	width: auto;/* si on met en auto, permet de rendre le paragraphe de description responsive */
	text-shadow: 0px 1px 1px rgba(255,255,255,0.6);
	-webkit-transition: opacity 0.3s linear 1.3s;
	-moz-transition: opacity 0.3s linear 1.3s;
	-o-transition: opacity 0.3s linear 1.3s;
	-ms-transition: opacity 0.3s linear 1.3s;
	transition: opacity 0.3s linear 1.3s;
}
.lb-overlay div h3{
	font-size: 36px;
	text-align: right;
	float:left;
}
.lb-overlay div h3 span{
	float:left;
	position:absolute;
	font-size: 16px;
	font-style: italic;
	display: block;
	line-height: 6px;
}
.lb-overlay div p{
	text-align: left;	
	height: auto;
}
.lb-overlay a.lb-close{/* systeme fermeture fenêtre modale */
	background: rgba(27,54,81,0.8);
	z-index: 9999999999999;
	color: #fff;
	position: absolute;
	float:right;
	top: 43px;
	left: 50%;
	font-size: 15px;
	line-height: 26px;
	width: 250px;
	height: 23px;
	overflow: hidden;
	margin-left: -25px;
	opacity: 0;
	filter: alpha(opacity=0); /* internet explorer */
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0)"; /*IE8*/
	-webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
	box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
	-webkit-transition: opacity 0.3s linear 1.2s;
	-moz-transition: opacity 0.3s linear 1.2s;
	-o-transition: opacity 0.3s linear 1.2s;
	-ms-transition: opacity 0.3s linear 1.2s;
	transition: opacity 0.3s linear 1.2s;
}
.lb-overlay img{
	/* height: 100%; For Opera max-height does not seem to work */
	max-height: 100%;
	padding: 0px 20px;
	float:right;
}
.lb-overlay:target {
	width: auto;
	height: auto;
	bottom: 0px;
	right: 0px;
	padding: 80px 100px 120px 100px;
}
.lb-overlay:target img {
	-webkit-animation: fadeInScale 1.2s ease-in-out;
	-moz-animation: fadeInScale 1.2s ease-in-out;
	-o-animation: fadeInScale 1.2s ease-in-out;
	-ms-animation: fadeInScale 1.2s ease-in-out;
	animation: fadeInScale 1.2s ease-in-out;
}
.lb-overlay:target a.lb-close,
.lb-overlay:target > div{
	opacity: 1;
	filter: alpha(opacity=99); /* internet explorer */
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=99)"; /*IE8*/
}
@-webkit-keyframes fadeInScale {
  0% { -webkit-transform: scale(0.6); opacity: 0; }
  100% { -webkit-transform: scale(1); opacity: 1; }
}
@-moz-keyframes fadeInScale {
  0% { -moz-transform: scale(0.6); opacity: 0; }
  100% { -moz-transform: scale(1); opacity: 1; }
}
@-o-keyframes fadeInScale {
  0% { -o-transform: scale(0.6); opacity: 0; }
  100% { -o-transform: scale(1); opacity: 1; }
}
@-ms-keyframes fadeInScale {
  0% { -ms-transform: scale(0.6); opacity: 0; }
  100% { -ms-transform: scale(1); opacity: 1; }
}
@keyframes fadeInScale {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* 
	100% Height for Opera as the max-height seems to be ignored, not optimal for large screens 
	http://bricss.net/post/11230266445/css-hack-to-target-opera 
*/
x:-o-prefocus, .lb-overlay img {
    height: 100%;
}




body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	margin:0;
	padding:0;
}
html,body {
	margin:0;
	padding:0;
}
img { 
	border:0;
}

/* General Demo Style */
.ie7 body{
	overflow:hidden;
}
a{
	color: #333;
	text-decoration: none;
}
h4,h6{
text-transform:uppercase;
}
ol,ul {
	list-style:none;
}

.fixe{
 position: absolute;
 padding: 15px 10px 15px 10px;
 background-color:#51514f;
 border-top:4px dashed #fff; border-bottom:4px dashed #fff;
}