.bandeau
	{
		background: linear-gradient(to bottom, lightblue, white);
	}

.gauche
	{
		background: linear-gradient(to right, lightblue, white);
		min-height:100%;
	}	

.centre
	{
		background: linear-gradient(to bottom, lightblue, white);
		min-height:100%;
	}

/*on souligne les titres*/

h1
{
	text-decoration: underline;
}

/* placement des logos ffaaa et club dans le bandeau*/

.ffaaa 
	{
		float: left;
		width: auto;
	}

.club
	{ 
		float: right;
		width: auto;
	}
	
.titre
	{
		text-align: center;
	}

.facebook
	{
		width: 30%;
	}


/* placement de l'image de fond dans la partie gauche*/

.fond 
	{
		background-image:url(images/fond.png);
		background-size: cover;		
		background-attachment: fixed;
		background-position: center;		
		opacity: 30%;
		position: absolute;
		width:100%;
		height: 100%;
		
	}

.texte
	{
		position: relative;	
		width:100%;
		height: 100%;	
	}
			
	
/*pour que l'image de la page se redimensionne correctemnet sur IE10*/

.img-fluid
	{
		width: 100% \9;
	}

/*couleur et taille des liens*/

.brown
	{
		color: brown;
		margin-top: 1%;
		font-weight: bold;
	}

.brown:hover
{
    color : gray;
	font-size: 1.2em;
}



/*on fixe les marges de la pages horaires enfants pour les images*/

.marge
	{
		margin-top:5%;
		margin-bottom: 5%;
	}



/*affichage du logo facebook suivant la taille de l'écran*/


@media screen and (min-width: 300px) and (max-width: 575px)
{
	
.facebook
	{
		width: 20%;
	}
	
}


@media screen and (min-width: 1200px)
{
	
.facebook
	{
		width: 20%;
	}
	
}

/*couleur des liens de la page inscription*/


.inscription
{
	color: blue;
}