/* CSS Document */

/* fine bordure grise */
.border1 
{ 
  border-style:solid; 
  border-color:#CCCCCC; 
  border-width:1px; 
} 
/* fine bordure rouge bas */
.border2 
{ 
  border-bottom-style:solid; 
  border-bottom-color:#990000; 
  border-bottom-width:1px;
} 
/* fine bordure bleue bas */
.border3 
{ 
  border-bottom-style:solid; 
  border-bottom-color:#0000CC; 
  border-bottom-width:1px;
} 
/* fine bordure verte bas */
.border4 
{ 
  border-bottom-style:solid; 
  border-bottom-color:#006600; 
  border-bottom-width:1px;
} 
/* fine bordure magenta bas */
.border5 
{ 
  border-bottom-style:solid; 
  border-bottom-color:#990066; 
  border-bottom-width:1px;
}
/* fine bordure violette bas */
.border6 
{ 
  border-bottom-style:solid; 
  border-bottom-color:#666666; 
  border-bottom-width:2px;
}
/* fine bordure grise claire tout autour */
.border7 
{ 
  border-style:solid; 
  border-color:#999999; 
  border-width:1px;
}    

/* fine bordure grise tout autour */
.border8 
{ 
  border-style:solid; 
  border-color:#666666; 
  border-width:1px;
} 
/* fine bordure grise claire bottom */
.border9 
{ 
  border-bottom-style:solid; 
  border-bottom-color:#999999; 
  border-bottom-width:1px;
}
/* fine bordure grise bottom left and right */
.border10 
{ 
  border-bottom-style:solid; 
  border-bottom-color:#666666; 
  border-bottom-width:1px;
  border-left-style:solid; 
  border-left-color:#666666; 
  border-left-width:1px;
  border-right-style:solid; 
  border-right-color:#666666; 
  border-right-width:1px;
} 
