/* ---------------------------------------------------------------------------------------------- */
/* ---- Mise en place de l'image de fond du site avec ou sans application d'un filtre (flou) ---- */
/* ---------------------------------------------------------------------------------------------- */
html
{
	position: absolute;
    top: 0; 
	bottom: 0; 
	left: 0; 
	right: 0;
    height: 100%;
    margin:0;
    padding:0;
    background-size: 100%;
    width:100%; 
}
html:before
{
	content: "";
    position: fixed;
    height: 100%; 
	width: 100%;
    background: url(../images/bg_html1.jpg); /* L'image de fond */
    background-size: cover;
    z-index: -1; /* Conserver le background derrière le contenu */     
    -webkit-filter: blur(0px); /* la valeur du pixel détermine l'effet flouté de l'image de fond (0px=non flouté) */
    -webkit-background-size: cover; /* pour Chrome et Safari */
    -moz-background-size: cover; /* pour Firefox */
    -o-background-size: cover; /* pour Opera */
    background-size: cover; /* version standardisée */
} 

body
    {
	width: 1130px;
	margin: auto;
	margin-top: 5px;
    }

#barre
    {	
	width: 1130px;
	height: 50px;
	font-size: 80%;
	background: #222;
	margin: 8px 0 4px -2px;
    }

#barre td
    {
	background: #222;
	color: #fff;
	width: 150px;
	border-right: 1px solid orange;
	text-align: center;
	font-family: Georgia, Verdana, Arial;
	font-size: 100%;
    }

#barre td:hover
    {
	background: #333;
	transition: 0.6s;
    }
	
#barre a
    {
    padding: 2px;	
	color: #fff;
	font-size: 90%;
	text-decoration: none;
	transition: 0.4s;
    }
	
#barre a:hover
    {
	color: orange;
	transition: 0.4s;
    }
	
#bas_de_page
    {
	width: 851px;
	float: right;
	margin-top: -10px;
	background: #111;
	opacity: 0.8;
	border-top: 1px solid orange;
	border-radius: 0 0 8px 8px;
    }

#bas_de_page table
    {
	font-size: 110%;
	padding: 30px 0 0 0;
    }
	
#bas_de_page a
    {
	padding: 1px;
	border-bottom: 1px solid orange;
    color: #fff;
    font-size: 80%;	
	transition: 0.3s;
	text-decoration: none;
	}

#bas_de_page a:hover
    {
	color: orange;
	transition: 0.3s;
	}		
	
#colonne_1
    {
	float: left;
	width: 270px;
	margin: 4px 0 20px 0;
    }

#colonne_1 div
   {
	background: #111;
	opacity: 0.95;
	padding: 2px 10px;
	margin-bottom: 6px;
	border-top: 1px solid orange;
	border-radius: 0 0 6px 6px;
   }

#colonne_1 h1
    {
    font-size: 75%;
	padding-top: 3px;
	font-family: Times New Roman, Verdana, Arial, Georgia;
	text-align: center;
	color: #fff;
    }

#colonne_1 h2
    {
	font-size: 75%;
	font-family: Times New Roman, Georgia, Verdana, Arial;	
	text-align: center;
	color: orange;
    }
	
#colonne_1 h3
    {
	font-size: 80%;
	font-family: Times New Roman, Georgia, Verdana, Arial;
	text-align: center;
	color: #fff;
	font-style: itali;
    }
	
#colonne_1 h4
    {
	margin: auto;
	font-size: 160%;
	text-align: center;
    }

#colonne_1 a
    {
	text-decoration: none;
	background-color: black;
	font-weight: bold;
	color: white;
    }
	
#colonne_1 a:hover
    {
	background-color: white;
	color: black;
    }
	
#colonne_2
    {
	width: 850px;
	float: right;
	padding: 2px;
	margin-bottom: 20px;
	margin-top: -5px;
    }
	
#colonne_2 h1
    {
	margin-top: 10px;
	padding: 4px;
	background: #E6E6E6;
	color: maroon;
	font-size: 120%;
    }

#colonne_2 a
    {
	background-color: #222;
	color: #FFF;
	font-size: 105%;
	font-family: Georgia, Verdana, Arial;
	text-decoration: none;
	transition: 0.3s;
    }

#colonne_2 a:hover
    {
	background-color: #fff;
	color: black;
	font-family: Georgia, Verdana, Arial;
	text-decoration: none;
	transition: 0.3s;
    }	
#docs
    {
	width: 851px;
	background: #111;
	padding: 30px;
	margin: 10px 0 0 2px;
	border-top: 1px solid orange;
	border-radius: 0 0 8px 8px;
	opacity: 0.98;
    }	
#logo
    {
	width: 1124px;
    margin: auto;
	border-radius: 10px 10px 0 0;
    }
#table_maps
    {
	width: 800px;
	text-align: center;
	padding: 2px;
    }

#table_maps td
    {
	background: #333;
	color: #fff;
	width: 350px;
    }
#tarifs
    {	
	width: 855px;
	text-align: center;
	font-family: Georgia, Verdana, Arial;
	font-size: 80%;
    }
#tarifs td 
    {
    background: #111;
	opacity: 0.9;
	color: #fff;
	padding: 12px;
    }
#tooltip 
    {
    position:relative;
    } 	
#tooltip span
    {
    display: none;
    }	
#tooltip span img
    {
    width: 750px;
	border: 1px solid #222;
	border-radius: 10px;
    }
	
#tooltip:hover span
    {
    display: block;
    position: absolute;
    left: -150px;
    z-index: 1000;
    margin-top: -5px;
    margin-left: 40px;
    overflow: hidden;
    padding: 5px;
}	

.adresse
    {
    background: #111;
	font-size: 85%;
	opacity: 0.9;
	border-radius: 0 0 8px 8px;
	color: #FFF;
	padding: 10px 0 10px 0;
    }	

.brochure
    {
	width: 280px;
	border: 3px double #FFF;
	border-radius: 10px;
	transition:0.5s;
    }
.brochure:hover
    {
	transform: scale(1.25);
	transition:0.5s;
    }
	
.haut_de_page
    {
	font-size: 80%;
	text-align: right;
    }

.img_concert
    {
	width: 463px;
	height: 660px;
	float: left;
	margin: 8px 0 12px 3px;
    }
	
.img_eglise
    {
	width: 368px;
	height: 220px;
	border-radius: 6px;
    }
	
.img_vignette
   {
	width: 160px;
	border-radius: 15px;
   }
   	
.titre_tarifs
    {
    background: orange;
	padding: 3px 0;
	color: #111;
	font-size: 105%;
	margin-top: 5px;
	font-weight: bold;
    }