.test     {


background-color:#E4EFFF;
border:1px solid #9FC6FF;
padding:5px;
/*arrondir les coins en haut à gauche et en bas à droite*/
-moz-border-radius:10px 0;
-webkit-border-radius:10px 0;
border-radius:10px 0;


}


/* 
IMGarr		Image arrondie simple
MGabd		Image arrondie avec bordure à gauche 	
IMGabd		Image arrondie avec bordure à droite
IMGabgd		Image arrondie avec bordure à gauche et à droite
*/

/* Image arrondie simple ... */
.IMGarr     {
   -moz-border-radius:8px; 
   -webkit-border-radius:8px; 
   border-radius:8px; 
}

/* Arrondie avec bordure à gauche ... */
.IMGabg     {
   -moz-border-radius:8px; 
   -webkit-border-radius:8px; 
   border-radius:8px; 
   margin-left:8px;
}

/* Image arrondie avec bordure à droite ... */
.IMGabd     {
   -moz-border-radius:8px; 
   -webkit-border-radius:8px; 
   border-radius:8px; 
   margin-right:8px;
}

/* Image arrondie avec bordure à gauche et à droite ... */
.IMGabgd     {
   -moz-border-radius:8px; 
   -webkit-border-radius:8px; 
   border-radius:8px; 
   margin-left:8px;
   margin-right:8px;
}



/* 
--------------------------------------------------------------------------------------------------------------------
 1. coin en haut à gauche  
 2. coin en haut à droite  
 3. coin en bas à droite   
 4. coin en bas à gauche  
 ex: border-radius: 1px 0 3px 4px;

    border-top-left-radius,
    border-top-right-radius,
    border-bottom-right-radius,
    border-bottom-left-radius.
--------------------------------------------------------------------------------------------------------------------
*/ 