/* Page */

body {
  margin: 0;
  font-family: "Book Antiqua", "Times new Roman", serif;
  background: #FFF;
  color: #FFF;
}

/* Liens */

a:link, a:visited {
  text-decoration: none;
	transition: all 0.2s;
}

a:link:hover, a:visited:hover {
  text-decoration: none;
	color: #09F;
}

/* Contenu */

.contenu {
	max-width: 800px;
	margin: auto;
	background: #999;
	padding: 10px;
	box-shadow: 0 0 5px #000;
}

.contenu table {
  width: 100%;
  background-color: #CCC;
  color: #000;
  padding: 0;
  box-shadow: inset 0 0 5px #000;
}

.contenu td {
  width: 45%;
  text-align: center;
  padding: 0 20px;
}

@media (max-width:500px) {
  td { display: inline };
  table { padding: 0 };
}

.contenu img {
  width: 100%;
  height: auto;
  margin: 5px 0;
}

.contenu li {
  list-style-type: '- ';
}

/* Titres */

.contenu h1, .contenu h2, .contenu h3 {
  color: #603;
  margin-top: 30px;

}

.contenu h1 {
  text-align: center;
  font-size: 36px;
  font-variant: small-caps;
}

.contenu h2 {
	font-size: 24px;
}

.contenu h3 {
	font-size: 16px;
}

/* En tete */

.tableTete {
  background: #777 !important;
}

.tableTete h1, .tableTete h2, .tableTete h3 {
  color: #FFF;
  font-weight: normal;
}

.tableTete h1 {
  font-size: 72px;
  margin: 10px;
}

.tableTete a {
  font-size: 20px;
  background: #000;
  color: #FFF;
  padding: 2px 8px;
  transition: all 0.2s;
}

.tableTete a:hover {
  background: #CCC;
  padding: 2px 12px;
  color: #603;
}

.tableTete td {
  padding: 0 2px;
}

.tableTete ul {
  padding: 0;
}

.tableTete li {
  margin-bottom: 8px;
  list-style-type: none;
}

.tableTete img {
  width: 80%;
}

/* Couleurs */

.artiste { color: #F14 }

.pratique {
	color: #15A;
	font-style: italic;
}

.soustitre {
  font-style: italic;
  text-align: center;
}

.ligne {
  border-bottom: solid 1px #603;
}