1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
| #col_gauche {
float: left;
/* margin-left: 7px; ok pour moz mais 2 px pour IE */
margin-left:7px;
width: 151px;
margin-bottom: 20px;
}
#col_centre {
float: left;
width: 360px;
margin-top: 8px;
margin-bottom: 20px;
margin-left: 7px;
margin-right: 7px;
background-color: #FFFFFF;
padding: 5px 5px 5px 5px;
}
#col_droite {
float: right;
/* margin-right: 7px; ok pour moz mais 2 px pour IE */
margin-right:7px;
margin-bottom: 20px;
margin-top: 8px;
width: 151px;
}
/* -- BLOCS DROITS -- */
.haut_bloc_droit {
background-image: url(cg/angle_cartouche_haut.png);
background-repeat: no-repeat;
height:12px;
}
.bas_bloc_droit {
background-image: url(cg/angle_cartouche_bas.png);
background-repeat: no-repeat;
height:25px;
}
.contenu_bloc_droit {
border-left: 1px solid #F2EBCC;
border-right: 1px solid #F2EBCC;
background-color: #FFFFFF;
width: 136px;
padding: 5px 5px 5px 10px;
}
.lasuite {
text-align: right;
font-size: 10px;
margin: 5px 0 0 0;
} |