@charset "utf-8";
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: none;
	margin-top:10px;
	margin-bottom:10px;
	padding: 0;
	color: #000;
}


/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
/* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
h5{
	color: blue;
}

p{
	font-size: 14px;
	text-align:justify;
}


a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	/* attributs pour les ombres */
	box-shadow:4px 1px 8px gray;
    -moz-box-shadow:4px 1px 8px gray;
    -webkit-box-shadow:4px 1px 8px gray;
	/* attributs pour les coins */
	border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    -khtml-border-radius: 10px 10px 10px 10px;
	width: 960px;
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header { 
	height:200px;
	/* attributs pour les coins */
	border-radius: 10px 10px 0 0;
	-moz-border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -khtml-border-radius: 10px 10px 0 0;
}
/*Attributs du menu */
	
. nav ul {
 	padding:0;
 	margin:0;
 	list-style:none;
 }
.nav ul li{ display: inline-block; }
.nav li {
	float: left; /*pour IE*/
 	border:1px solid black;
 }
.nav ul li a {
 	float:left;   
 	width: 158px;
 	line-height:30px; /*hauteur de l'image de fond*/
 	background: #000 repeat-x;
	color:#DCDCDC;
 	text-decoration:none;
 	text-align:center;
 }
.nav ul li a:hover {
 	background: #666 repeat-x;
 	color:white;
 } 
 
/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/
.trad1{
	position: absolute;
	margin-left: 910px;
	margin-top: -180px;
	/* Pour IE */
    
}

.trad2{
	position: absolute;
	margin-left: 860px;
	margin-top: -180px;
    /* Pour IE */
	
}

.content {
	padding: 10px 0;
	margin-top:15px;
}
.content h2{
	text-align:center;
}

.gauche{
	float:left;
    width:490px;
	
}
.gauche p{
	text-align:justify;
	font-size:12px;
}
/*concerne la page de description */
table{
	width: 95%;
	border: none;
	font-size:12px;
	margin-left: 50px;
}

table ul {
	color: #333;
	list-style-type: disc;
}
	
table tr {
	height: 30px;
}
/* Tableau de la page localisation.html */
.acces p {
	font-size: 12px;
	text-align:left;
	margin: 1px;
	margin-left: 18px;
}

.acces table{
	width: 98%;
	border: none;
	margin-left: 35px;
}
.acces h5{
	font-size: 13px;
	margin: 1px;
	padding: 0;
}

/* ~~ Le lien de la visite virtuelle ~~ */
.virtuelle{
	font-size: 16px;
	text-align:center;
	font-weight: bold;
}
/* ~~ Page activites.html ~~ */
.activite{
	text-align:center
}
/* ~~ Coordonnées du proprio ~~ */
.coordonnes{
	text-align:center
}
/* ~~ Connexion au planning de la page dispo.html ~~ */
.connexion{
	text-align:center;
	size:10px;
}

/* ~~ Le formulaire ~~ */

form {
 padding-left:80px;
 width:780px;
 }
 
 fieldset {
 margin-bottom:10px;
 border:1px solid #999;
 border-radius: 5px;
 }

legend {
 color:blue;
 font-size:14px;
 font-weight:bold;
 }
 
input, textarea, select {
 padding:3px;
 border:1px solid #CCC;
 border-radius: 5px;
 box-shadow:1px 1px 2px inset;
 }
 
 input[type=submit], input[type=reset] {
 width:150px;
 margin-left:5px;
 box-shadow:1px 1px 1px #CCC;
 cursor:pointer;
 }
 
input:focus, textarea:focus, select:focus {
 background-color: #CCC;
 }

input[type=submit]:hover, input[type=reset]:hover {
 background-color: #CCC;
 }
/* ~~ Centrer le bouton du formulaire ~~ */
.bouton{
	text-align:center
}

small {
	color: #333;
}
 
/* ~~ The footer ~~ */
.footer {
	padding: 5px 0;
	background: #CCC;
	border-radius: 0 0 10px 10px;
	clear:both;
}
.footer p {
	margin-top: 10px;
	font-size:10px;
	text-align:center;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
	top:auto;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
	
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}.treshautesaison {
	color: #F60;
	font-weight: bold;
}
.hautesaison {
	color: #FC0;
	font-weight: bold;
}
.moyennesaison {
	color: #9F6;
	font-weight: bold;
}
.bassesaison {
	color: #9CF;
	font-weight: bold;

}
