/*
Copyright (c) 2008, e-quinox All rights reserved.
version: 1.0
*/

/*
L objectif est de fournir une base coherente pour les fontes.

 Les fontes sont initialisées à 13px. Utiliser ensuite les pourcentages afin d'ajuster
10px  => 77%
11px  => 85%
12px => 93%
13px => 100%
16px => 123.1px;
etc ...
*/
/* Pour obtenir les % equivalent sous IE (merci microsoft) 
	IE's em width = em width * 0.9759
	em width = pixel width / 13
width en pixel ; em = pixel/13 FF, opera. em* 0.9759 IE

*/

/**
* Les pourcentages peuvent marcher pour IE mais pour des raisons de compatibilite, on utilise le keyword small.
 */
body {
	font-size:13px ;
	font-family: Arial, helvetica,sans-serif;
	*font-size:small;
	font-weight:normal;
	line-height:1.231em;
	*line-height:1.20em;
	
}


select,
input,
button,
textarea {
	font:99% arial,helvetica,clean,sans-serif;
}

table {
	font-size:inherit;
	font:100%;
}


pre,
code,
kbd,
samp,
tt {
	font-family:monospace;
	*font-size:108%;
	line-height:100%;
}