@charset "utf-8";
/* CSS Document */

/********************************************
   éléments html
********************************************/ 


/* top elements */
* { padding: 0; margin: 0; }

body {
	margin: 15px;
	padding: 15px;
	font: .70em/1.5em  Verdana, Tahoma, Helvetica, sans-serif;
	color: #FFF; 
	background: #000 url(bg.jpg) repeat-x;
	text-align: left;

}

/* links */
a {
	color: #FFF;
	background-color: inherit;
	text-decoration: underline;
}
a:hover {
	color: #FC0;
	background-color: inherit;
}

/* headers */
h1, h2, h3 {
	font: bold 1em Verdana, Tahoma, Helvetica, Sans-serif;
	color: #FFF;	
}
h1 { font-size: 1.8em; } 
h2 { font-size: 1.7em; text-transform:uppercase; color: #FFF} 
h3 { font-size: 1.5em; }
h5 { font-size: 1.2em; text-transform:uppercase; color: #FFF}

p {
	margin: 10px 15px;
	text-align: justify;
}
h1, h2, h3 {
	margin: 10px 15px;
	text-align: left;
}
h1{
padding-bottom:10px;
}
h4 {
	margin: 0px 10px;
	padding-bottom:10px;
}

ul, ol {
	margin: 10px 30px;
	padding: 0 15px;
	color: #60F;
}
ul span, ol span {
	color: #999; 
}

/* images */
img {
	border: 2px solid #CCC;
}
img.no-border {
	border: none;
}
img.float-right {
  float:right;
  margin: 5px 0px 5px 15px;  
}
img.float-left {
	float:left;
	margin: 5px 15px 5px 0px;
}
a img {  
  border: 2px solid #568EB6;
}
a:hover img {  
  border: 0px solid #CCC !important; /* IE fix*/
  border: 0px solid #568EB6;
}

code {
  margin: 5px 0;
  padding: 10px;
  text-align: left;
  display: block;
  overflow: auto;  
  font: 500 1em/1.5em 'Lucida Console', 'courier new', monospace;
  /* white-space: pre; */
  background: #FAFAFA;
  border: 1px solid #f2f2f2;  
  border-left: 4px solid #4284B0; 
}
acronym {
  cursor: help;
  border-bottom: 1px solid #777;
}
blockquote {
	margin: 15px;
 	padding: 0 0 0 20px;  	
  	background: #FAFAFA;
	border: 1px solid #f2f2f2; 
	border-left: 4px solid #4284B0;   
	color: #4284B0;
	font: bold 1.2em/1.5em Georgia, 'Bookman Old Style', Serif; 
}


/***********************
	  mise en page
************************/

/* wrap */
#wrap {
	clear: both;
	position: relative;
	top: 77px;
	margin:0 auto;
	width:1024px;
}

/* titre */
#titre {
position: absolute;
float: left;
height: 107px;
top: 0px;
left: 0;
width: 100%;

background-color: #000;
}
/* menu */
#hovermenu {
	clear: both;
	background: #000;
	padding: 0;
	width: 50%;
	height: 25px;
}




/* contenu */
#contenu {
	position: relative;
	float: right;
	color: #F9B4AE;
	background: #961619;
	width: 800px;
	padding: 5px;
	margin: 10px;
	border: 3px solid #000;
	
}
/* horaire */
#horaire{
	position: absolute;
	float: left;
	background: #000;
	margin: 15px;
	width: 180px;
	/* pour IE */
  	filter:alpha(opacity=85);
	/* CSS3 standard */
  	opacity:0.85;


}
/* footer */
#footer {
float: left;
	clear: both;
	background: #000;
	height: 77px;
width: 100%;
margin: 0;
padding: 0;

}

/* menu actions */

.hovermenu ul{
font: bold 13px verdana;
padding-left: 0;
margin:0 auto;
height: 20px;
}

.hovermenu ul li{
list-style: none;
display: inline;
}

.hovermenu ul li a{
	padding: 2px 0.5em;
	text-decoration: none;
	float: left;
	color: white;
	background-color: #000;
	border: 1px solid #FFF;
}

.hovermenu ul li a:hover{
	background-color: #900;
	border-style: outset;
}

html>body .hovermenu ul li a:active{ /* Apply mousedown effect only to NON IE browsers */
border-style: inset;
}

/***********************
	 gallerie de photos
************************/

.gallerycontainer{
position: relative;
height: 600px;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: 1px solid white;
margin: 8px;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 1px solid blue;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #FDEAEA;
padding: 5px;
left: 5px;
border: 1px #F9B4AE;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 0;
left: 75px; /*position where enlarged image should offset horizontally */
z-index: 50;
}

/***********************
	 show n hide
************************/

.more {
    display: none;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666; }
a.showLink, a.hideLink {
    text-decoration: none;
    color: #FFD769;
    padding-left: 8px;
    background: transparent url('down.gif') no-repeat left; }
a.hideLink {
    background: transparent url('up.gif') no-repeat left; }
a.showLink:hover, a.hideLink:hover {
    border-bottom: 1px dotted #36f; }

