/* feuille de style pour les boites flottantes */

/* Flottant c'est la boîte magique */
.flottant
{
        position:          absolute;
        z-index:           100;
        left:              100px;
        top:               100px;
        width:             350px;
        height:            350px;
        background-color:  #e0e0e0;
        border:            solid black 1px;
        font-family:       arial,sans-serif;
        font-size:         13px;
        overflow:          visible;
}

/* Le bandeau de titre */

.flottant .titreflottant
{
        padding:           3px;
        font-weight:       bold;
        color:             #cc0000;
        background-color:  #ffe0cc;
        border-bottom:     solid black 1px;
        z-index:           1;
}

/* les boutons de réduction et fermeture */

.flottant .titreflottant .close
{
        float:             right;
        padding:           0px 3px 0px 3px;
        margin-left:       2px;
        font-family:       courier new;
        font-size:         11px;
        border:            solid #cc0000 1px;
        background-color:  #ffcc99;
        cursor:            hand;
        z-index:           2;
}

/* ca c'est pour la mise en forme ... faites comme vous voulez ... */

.flottant div
{
        padding:           4px;
        color:             #666666;
}


