/*
test on FF IE Opera  Safarie 2008 03 28 with DTD xmlns="http://www.w3.org/1999/xhtml"

issues
1 : Safarie has word letters more spacing than others browsers
not solve with tag css letter-spacing 
---
2: firefox ne coupera pas --- avec retour a la ligne il prendt ca pour un mot complet
- solution white-space:nowarp (un peu fort)
---
3 IE place les image 
background-image:url(image.jpg);
 background-position:2px 2px;
dans l'element sans prendre en compte la bordure
- solution: ajouter un div
div{
   border: 2px solid #555555;
}
div>div{
width:100px;height:100px;
  background-image:url(imoto_20070714_123850.jpg);
}
<div><div></div></div>
---

 
minimal size of the canvas before overflow :
Opera : width 75px
FF : width 164px
IE7 :  width 238px
Saf : width 346px

default values:

 margin : top right bottom left
 FF : 8px 8px 8px 8px 
 IE : 10px 15px 10px 15px
 Opera : 8px 8px 16px 8px
 Safari : 8px 8px 8px 8px
 
   font-family: font ;
 all: xxx 
 //user can change it so we can put it on css
 
 line-height: value
 FF : 1.25em
 IE : 1.25em
 Opera : 1.25em
 Safari : 1.2em
 
 */




html{
overflow: auto; /* IE have a default verticale scroll bar, now it appears only if it is usefull*/
  height:100%
}
body {
    font-family: Arial,sans-serif

font-size:0.8em;
margin:10px;  /* IE have a default : margin-top:15; margin-bottom:15; margin-left :10;margin-right :10 */
 /* Opera have a default : margin-top:8; margin-bottom:16; margin-left :8;margin-right :8 */
  
}

