/*
style.css
---------
Par Jean Colin

*/

body
{
	background-color: rgba(31,73,125,0.2);
	font-family: "Comic Sans MS", "Trebuchet MS", Verdana, serif;
	color: navy;
	}

#bloc_page
{
	width: 1024px;
	margin: auto;
	}

#banniere_header
{
	height: 180px;
	border-radius: 5px;
	background: url("images_MLN/image_intro.jpg") no-repeat;
	box-shadow: 0px 4px 4px black;
	margin-bottom: 5px;
	padding-top: 0px;
	}

#galerie
{
	background-color: #8E1618;
	width: 260px;
	margin: 20px;
	padding: 10px;
	float: right;
	border-color: #3D3939;
	border-radius: 10px;
	border-style: solid;
    }

#galerie_creations
{
	width: 1015px;
	background-color: #ffdab9;
	margin: 10px auto 5px;
	margin-top: 10px;
	padding: 5px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	background-image: -webkit-linear-gradient(270deg,rgba(255,218,185,1.00) 0%,rgba(255,0,0,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(255,218,185,1.00) 0%,rgba(255,0,0,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(255,218,185,1.00) 0%,rgba(255,0,0,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(255,218,185,1.00) 0%,rgba(255,0,0,1.00) 100%);
	}
	
/*#coordonees
{
text-align: right;
	}*/

#formulaire
{
width: 1024px;
margin-top: 5px;
height: auto;
border-radius: 5px;
-webkit-border-radius: 	5px;
-moz-border-radius: 5px;
box-shadow: 0px 4px 4px black;
background-color: #333;
	}
	
#form_entete
{
font-size: 1.7em;
color: #40427f;
text-align: center;
padding: 10px;
margin: 0 0 30 0;
border: 1px solid #777879;
border-radius: 5px;
-webkit-border-radius: 	5px;
-moz-border-radius: 5px;
background-color: #EAFDFF;
	}

#statut
{
display: inline-block;
width: 500px;
margin-left: 10px;
	}

#souhait
{
display: inline-block;
width: 500px;
margin-right: 5px;
	}
	
#form_but
{
width: 200px;
margin: auto;
padding-top: 10px;
font-size: 1.3em;
	}

#form_merci
{
height: 300px;
font-size: 2em;
color: #darkblue;
margin: 5px 0 5px 0;
padding: auto;
text-align: center;
border: 1px solid #777879;
border-radius: 5px;
-webkit-border-radius: 	5px;
-moz-border-radius: 5px;
background-color: #EAFDFF;
	}

legend
{
font-size: 1.3em;
color: #EAFDFF;
	}

label 
{
display: inline-block;
color: lightblue;
margin: 0 0 0 15px;
	}


input 
{
color: #4b4b4b;
padding: 5px 10px 5px 10px;
margin: 0 0 20px 0;
background: #f1f2f4;
border:1px solid #b6b7b9;
border-radius: 5px;
-webkit-border-radius: 	5px;
-moz-border-radius: 5px;
	}

textarea 
{
color: #4b4b4b;
padding: 5px 10px 5px 10px;
margin: 0 0 0 0;
background: #f1f2f4;
border:1px solid #b6b7b9;
border-radius: 5px;
-webkit-border-radius: 	5px;
-moz-border-radius: 5px;
	}
	
ul.enlarge
{
list-style-type:none; /*remove the bullet point*/
	}
	
ul.enlarge li
{
display:inline-block; /*places the images in a line*/
position: relative; /*allows precise positioning of the popup image when used with position:absolute */
z-index: 0; /*resets the stack order of the list items - we'll increase in step 4.*/
margin:20px 20px 0 20px; /*space between the images*/
	}

ul.enlarge span
{
position:absolute;
left: -9999px; /*moves the span off the page, effectively hidding it from view*/
	}

ul.enlarge img
{
/*give the thumbnails a frame*/
background-color:#eae9d4; /*frame colour*/
padding: 6px; /*frame size*/
/*add a drop shadow to the frame*/
-webkit-box-shadow: 0 0 6px rgba(132, 132, 132, .75);
-moz-box-shadow: 0 0 6px rgba(132, 132, 132, .75);
box-shadow: 0 0 6px rgba(132, 132, 132, .75);
/*and give the corners a small curve*/
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
	}

 ul.enlarge li:hover
 {
z-index: 50; /*places the popups infront of the thumbnails, which we gave a z-index of 0 in step 1*/
cursor:pointer; /*changes the cursor to a hand*/
	}
/***We bring the large image back onto the page by reducing left from -9999px (set in step 2) to figures below***/
ul.enlarge li:hover span
{
/*positions the <span> when the <li> (which contains the thumbnail) is hovered*/
position: absolute;
top: 100px;
left: 100px;
	}
/***To make it look neater we used :nth-child to set a different left distance for each image***/
ul.enlarge li:hover:nth-child(2) span
{
position: absolute;
top: 100px;
left: -200px;
	}
ul.enlarge li:hover:nth-child(3) span
{
position: absolute;
top: 100px;
left: -450px;
	}
	
ul.enlarge li:hover:nth-child(4) span
{
position: absolute;
top: 50px;
left: 100px;
	}

ul.enlarge li:hover:nth-child(5) span
{
position: absolute;
top: 50px;
left: -200px;
	}
ul.enlarge li:hover:nth-child(6) span
{
position: absolute;
top: 50px;
left: -450px;
	}

ul.enlarge li:hover:nth-child(7) span
{
position: absolute;
top: -400px;
left: 100px; 
	}

ul.enlarge li:hover:nth-child(8) span
{
position: absolute;
top: -400px;
left: -200px;
	}
ul.enlarge li:hover:nth-child(9) span
{
position: absolute;
top: -400px;
left: -450px;
	}

ul.enlarge span img
{
    padding: 2px; /*size of the frame*/
    background: #ccc; /*colour of the frame*/
    }

    /***Style the <span> containing the framed images and the caption***/
ul.enlarge span
{
    /**Style the frame**/
    padding: 10px; /*size of the frame*/
    background:#eae9d4; /*colour of the frame*/
    /*add a drop shadow to the frame*/
    -webkit-box-shadow: 0 0 20px rgba(0,0,0, .75));
    -moz-box-shadow: 0 0 20px rgba(0,0,0, .75);
    box-shadow: 0 0 20px rgba(0,0,0, .75);
    /*give the corners a curve*/
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius:8px;
    /**Style the caption**/
    font-family: 'Droid Sans', sans-serif; /*Droid Sans is available from Google fonts*/
    font-size:.9em;
    text-align: center;
    color: #495a62;
    }

nav ul
{
	font: 1.4em "Comic Sans MS";
	font-weight:bold;
	display: table;
	width: 1024px;
	margin:auto;
	padding:0;
	background: orangered;
	background: -webkit-linear-gradient(orange,orangered);
	background: -moz-linear-gradient(orange,orangered);
	background: -ms-linear-gradient(orange,orangered);
	background: -o-linear-gradient(orange,orangered);
	background: linear-gradient(orange,orangered);
	border-radius: 5px;
	box-shadow: 0 1px 3px rgba(0,0,0,.4),
		0 3px 5px rgba(0,0,0,.3),
		0 5px 10px rgba(0,0,0,.3),
		0 20px 20px rgba(0,0,0,.2);
	}

nav ul li
{
	display: table-cell;
	}

nav ul li:first-child a
{
	border-radius: 5px 0 0 5px;
	}

nav ul li:last-child a
{
	border-radius: 0 5px 5px 0;
	}

nav ul li a
{
	display: block;
	text-align: center;
	color: navy;
	text-decoration: none;
	padding: 8px 8px 17px 8px;
	text-shadow: 0 1px 0 rgba(255,255,255,.5);
	box-shadow: 0 1px 0 rgba(255,255,255,.7)inset,
		0 -1px 0 hsl(210,100%,32%)inset,
		0 -2px 0 hsl(210,100%,38%)inset,
		0 -3px 0 hsl(210,100%,44%)inset,
		0 -4px 0 hsl(210,100%,50%)inset,
		0 -5px 0 hsl(210,100%,60%)inset;
		transition: all .4s .1s;
	}

nav ul li a:hover, ul li a:focus
{
	color: purple;
	background: rgba(255,255,255,.2);
	box-shadow: 0 1px 0 rgba(255,255,255,.7)inset,
		0 -1px 0 hsl(210,100%,42%)inset,
		0 -2px 0 hsl(210,100%,48%)inset,
		0 -3px 0 hsl(210,100%,54%)inset,
		0 -4px 0 hsl(210,100%,60%)inset,
		0 -5px 0 hsl(210,100%,70%)inset;
		padding: 8px 25px 17px 25px;
		transition: all .4s 0s;
	}

nav ul li a:active
{
	background: linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.1));
	box-shadow: 0 0 2px rgba(0,0,0,.3) inset;
	}

section
{
	display: inline-block;
	width: 700px;
	margin-top: 5px;
	vertical-align: top;
	text-align: center;
	background: bisque;
	box-shadow: 0 1px 3px rgba(0,0,0,.4),
		0 3px 5px rgba(0,0,0,.3);
	border-radius: 5px;
	margin-bottom: 5px;
	height: 640px;
	}

section ul
{	
	padding: 5px;
	}

section ul li
{
	margin-left: 150px;
	}

aside
{
	display: inline-block;
	width: 312px;
	margin-top: 5px;
	margin-left: 5px;
	padding-top: 10px;
	text-align: center;
	background: plum;
	box-shadow: 0 1px 3px rgba(0,0,0,.4),
		0 3px 5px rgba(0,0,0,.3);
	border-radius: 5px;
	height: 630px;
	margin-bottom: 5px;
	}

li
{
	text-align: left;
	margin-left: 20px;
	}
	
h1
{
	color: red;
	font-size: 2.5em;
	text-shadow: 2px 2px 2px rgb(0,0,0);
	padding: 15px 0 0 25px;
	}
h-titre-1
{
	color: red;
	font-size: 2.8em;
	text-shadow: 2px 2px 2px rgb(0,0,0);
	top: 15px;
	margin-left: 15px;
	font-weight: bold;
	font-variant: small-caps;
	position: relative;
	}

h2
{
	color: yellow;
	font-size: 2.5em;
	text-shadow: 2px 2px 2px rgb(0,0,0);
	padding: 0 0 0 55px;
	}
h-titre-2
{
	color: yellow;
	font-size: 2.8em;
	text-shadow: 2px 2px 2px rgb(0,0,0);
	padding: 0 0 0;
	margin-left: 50px;
	font-weight: bold;
	font-variant: small-caps;
	position: relative;
	top: 40px;
	}

h3
{
	font-family: "Trebuchet MS", "Comic Sans MS", Verdana, serif ;
	color: green;
	font-size: 1.5em;
	text-shadow: 2px 2px 2px rgb(0,0,0);
	}

h4
{
	text-align: left;
	margin-left:110px;
	font-family: "Trebuchet MS", "Comic Sans MS", Verdana, serif ;
	color: purple;
	font-size: 1.2em;
	text-shadow: 1px 1px 1px rgb(0,0,0);
	}

h5
{
	text-align: right;
	padding-right: 15px;
	}
table
{
	border-collapse: collapse;
	margin: auto;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	box-shadow: 0px 4px 4px black;
	-webkit-box-shadow:0px 4px 4px black;
	-moz-box-shadow:0px 4px 4px black;
	}

td
{
	width: 1024px;
	position: relative;
	text-align: center;
	color: rgba(50,50,50,1);
	font-size: 0.6em;
	background: rgba(126,126,126,.2);	
	padding: 5px;
	}

.bouton{
	width: 960px;
	height: 30px;
	margin: auto;
	text-decoration: none;
	display:inline-block;
	vertical-align:middle;
	text-align: center;
}

.bouton.normal{
	border :2px solid;
	padding : 2px 5px;
	font-size: 20px;
}

.bouton.gros{
	border :4px solid;
	font-size: 24px;
	font-weight:bold;
	padding : 5px 12px;
}

.bouton.bleu{
	color: #feffff ;
	background-color: #057db9;
	border-color : #184c88 ;
}

.bouton.rouge{
	color: #feffff ;
	background-color: #ff6f00;
	border-color : #f50a0a ;
}

.bouton.rond{
	padding : 2px 10px;
	-webkit-border-radius: 	10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.bouton.basrond{
padding : 2px 10px;
-webkit-border-bottom-right-radius: 20px;
-webkit-border-bottom-left-radius: 20px;
-moz-border-radius-bottomright: 20px;
-moz-border-radius-bottomleft: 20px;
border-bottom-right-radius: 20px;
border-bottom-left-radius: 20px;
}

.bouton.idee{
padding : 2px 10px;
-webkit-border-radius: 20px;
-webkit-border-bottom-left-radius: 0;
-moz-border-radius: 20px;
-moz-border-radius-bottomleft: 0;
border-radius: 20px;
border-bottom-left-radius: 0;
}

.bouton.topdegradbleu {
	background: #057db9; /* pour Ie qui gere mal les degradés */
	background: -webkit-gradient(linear, left top, left bottom, from(#057db9), to(#184c88));
	background: -moz-linear-gradient(top,  #057db9,  #184c88);
	color: #feffff ;
	border-color : #184c88 ;
}

.bouton.icon1:before {
content: ""url(icone1.png)" ";
 }
 
 .bouton.icon2:after {
content: ""url(icone2.png)" ";
 }
 
 .bouton.ombre {
  -webkit-box-shadow:1px 1px 10px 5px black;
  -moz-box-shadow:1px 1px 10px 5px black;
  -o-box-shadow:1px 1px 10px 5px black;
  box-shadow:1px 1px 10px 5px black;
 }
 
  .bouton.txtombre {
 text-shadow:2px 2px 2px black,-2px -2px 2px white;
 }
 
.bouton.hover1:hover {
	box-shadow: 1px 1px 5px 2px black inset;
	width: 0px;
 }
 
.bouton.hover2:hover {
padding : 2px 10px;
-webkit-border-radius: 20px;
-webkit-border-bottom-left-radius: 0;
-moz-border-radius: 20px;
-moz-border-radius-bottomleft: 0;
border-radius: 20px;
border-bottom-left-radius: 0;
 }
 
.bouton.activ1:active{
 box-shadow:1px 1px 5px 2px black inset;
}
#expo {
	background-image: url(images_MLN/expo.jpg);
	background-size: 180px 101px;
	display: block;
	width: 180px;
	height: 101px;
	margin-left: 60px;
	background-repeat: no-repeat;
	text-indent: -9999px;
}
#expo:hover {
	background-image: url(images_MLN/expositions.jpg);
	background-size: 640px 400px;
	background-position: 0% 0%;
	margin-left: -650px;
	width: 1024px;
	margin-top: -300px;
	height: 768px;
	display: block;
}
