/* Mise en page en 2 colonnes : [menu gauche] + contenu centre */

#bloc_gauchecentre
{
    float: left;
    width: 1000px;
}

#bloc_gauchecentre_tete
{
    /*height: 7px;*/
    height: 20px; /* pour décaler un peu vers le bas afin de caser le haut du fond de la colonne de droite si besoin */
    background-image: url(../../images/bloc_centre_fond_tete-3col.png);
    background-repeat: no-repeat;
    background-position: bottom left;
}

#bloc_gauchecentre_corps
{
    background-image: url(../../images/bloc_centre_fond_milieu-3col.png);
    background-repeat: repeat-y;
    background-position: left;
}

#bloc_gauchecentre_corps table
{
    /*width: 900px;
    border: 1px solid black;*/
}

#bloc_gauchecentre_pied
{
    height: 13px;
    background-image: url(../../images/bloc_centre_fond_pied-3col.png);
    background-repeat: no-repeat;
    background-position: top left;
}

#bloc_gauche
{
    float: left;
    width: 138px;
    margin-left: 20px;
    overflow: hidden;
    clear: both;
}

/* récupéré dans global.css (ex-centredroite)
#bloc_centre
{
    float: left;
    clear: none;
    width: 780px;
    margin-left: 20px;
}*/

#bloc_centre
{
    float: left;
    width: 810px; /* TODO! à recalculer ! */
    margin: 0;
    padding-left: 18px;
    overflow: hidden;
}

/* EOF */

