/**
 * CSS d'affichage d'une fiche produit
 * Les fiches produit s'affichent sans menu haut ni formulaire de recherche. 
 * Ces particularit�s sont g�r�es dans la CSS bandeau_simple.css
 */
 
@import url(bandeau_simple.css);

#contenu {
	margin-left: auto;
	margin-right: auto;
	padding: 0px;
	width: 990px;
	overflow: hidden;
}

/* Le style de la fiche produit */
#fiche_produit {
	width: 990px;
	height: 625px;
	float: left;
}
#fiche_produit .illustration {
	float: left;
	width: 700px;
}
#fiche_produit .description {
	padding: 20px 10px 0 10px;
	margin-left: 700px;
}
#fiche_produit .description p {
	font-weight: bold;
	font-size: 0.75em;
	line-height: 1.35em;
}
#fiche_produit .description .encart {
	text-align: center;
	border: 1px solid #000;
	margin: 10px 5px 0 5px;
	padding: 0 4px 4px 4px;
}
#fiche_produit .description .encart h3 {
	font-size: 1.1em;
	padding: 4px 0;
}
#fiche_produit .description .encart p {
	font-weight: normal;
	font-size: 0.7em;
}