
/* Spécifique à cette page : devra être mis dans une css spécifique appelée dynamiquement */

hr {
  height: 5px;
  color: #feaa9c;
  background-color: #feaa9c;
}

a {
  color: #feaa9c;
  text-decoration :none;
}

a:hover {
  color: #feaa9c;
  text-decoration :underline;
}

.imgAffiche {
  border: 2px solid #feaa9c;
  margin : 5px;
}

.imgAfficheGd {
  border: 2px solid #feaa9c;
  margin : 5px;
  width : 50%;
}

.imgPhoto {
  border: 2px solid #feaa9c;
  margin : 5px;
}

.annee {
  font-family: Tahoma, Verdana;
  color: #feaa9c;
  font-size: 18pt;
}

.note {
  color: #feaa9c;
}

.retour {
  text-decoration: none;
  color: #feaa9c;
}

.retour:hover {
  text-decoration: underline;
  color: #feaa9c;
}

.commentaire {
	font-size: 10pt;
	font-weight: normal;
}

@media screen and (max-width: 1024px)
{
	#troupe {
		display: grid;
		grid-template-areas: 
		    'texte'
		    'photos';
		grid-template:
		    'texte'
		    'photos';}
	
	#media {
		display: grid;
		grid-auto-columns: 45% 55%;
		grid-template-areas: 
		    'livreor'
		    'photos_liste';
		grid-template:
		    'livreor'
		    'photos_liste';}
	
	#photos {
	  display: table-cell;
	}
	
	 #photos_liste {
	  display: table-cell;
	}
	 
}

@media screen and (min-width: 1024px)
{
	#troupe {
		display: grid;
		grid-template-areas: 
		    'texte photos';
		grid-template:
		    'texte photos';}
	
	#media {
		display: grid;
		grid-auto-columns: 45% 55%;
		grid-template-areas: 
		    'livreor photos_liste';
		grid-template:
		    'livreor photos_liste';}
	
	#photos {
	  display: grid;
	  text-align : center;
	}
	
	 #photos_liste {
	  display: table-cell;
	}
	 
}
  
/* Nav active */

#navigation #nav_troupe a {
  background-color: #feaa9c;
  color: #7a7a7a;
}

#snavigation a:hover {
  border-bottom: 3px solid #feaa9c;
}

#snavigation #snav_active a {
  border-bottom: 3px solid #feaa9c;
}
