/* fin */
/* Mise en forme du contour du tableau */
/* Pour chaque cote du tableau on défint l'epaisseur de la ligne, la textrue, la couleur */
/* Et ce pour le haut (top), droite(right), gauche(left) et bas(bottom) */
#table_boutik{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #184AA7;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #184AA7;
	border-right-width: 1px;
	border-right-color: #184AA7;	
	border-right-style: solid;
	border-left-width: 1px;	
	border-left-color: #184AA7;	
	border-left-style: solid;
	width: 80%;	
}
/* fin */
/* Idem cette fois pour l'entete, mais là on definit le contour d'une cellule <td> 
 et on precise que le texte de cette cellule doit être centré */
.td_entete_boutik {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #184AA7;
	text-align:center;	
}
/* fin */
.td_menu_boutik {
	text-align:center;
	font-weight: bold;	
}
/* Idem cette fois pour les cellules du bas */
.td_bottom_boutik {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #184AA7;
	text-align:center;	
}
/* fin */
/* Là c'est pour la cellule qui contient le texte afficher le bon de commande 
 Je ne veux aucun contour mais je veux juste que le texte soit aligné */
.td_aff {
	text-align:center;	
}
/* fin */
/* A partir d'ici, on définit chaque cellule, colonne par colonne */
/* la première colonne */
.td_1{
	border-right-width: 1px;
	border-right-color: #184AA7;	
	border-right-style: solid;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #184AA7;
	text-align:center;
	width:3%;
	
/* la deuxième */		
}
.td_2{
	border-right-width: 1px;
	border-right-color: #184AA7;	
	border-right-style: solid;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #184AA7;		
	text-align:left;
	font-size: 12px;
	width:15%;
}
/* la troisième */
.td_3{
	border-right-width: 1px;
	border-right-color: #184AA7;	
	border-right-style: solid;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #184AA7;		
	width:30%;
}
/* la quatrième */
.td_4{
	border-right-width: 1px;
	border-right-color: #184AA7;	
	border-right-style: solid;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #184AA7;		
	text-align:center;
	width:10%;
}
/* la cinquième */
.td_5{
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #184AA7;
	color:#FF0000;	
	text-align:center;
	width:10%;
}
/* là c'est pour la description d'un article*/
/* je précise juste que je veux que la police soit plus petite */
.desc{
	font-size: 10px;
}