/* 
    Document   : default
    Created on : 28 juin 2012, 14:53:29
    Description:
        Feuille de style par défaut pour afficher un bloc de contenu statique
*/

/* Container d'une liste de blocs */
div.blocks{
    
}

/* Container du bloc */
div.block{
    
}

/* Titre du bloc */
div.block .titre{
    font-size: 17px;
    font-weight: normal;
    margin-top:30px;
    margin-bottom:10px;
}

/* Texte du bloc */
div.block div.texte{
    font-size:12px;
    overflow:auto;
}

div.block div.images{
    overflow:auto;
}

/* Images avant le titre */
div.block div.images.avant_titre{
    margin-bottom: 1em;
}

/* Images avant le texte */
div.block div.images.avant_texte{
    margin-bottom: 1em;
}

/* Images après le texte */
div.block div.images.apres_texte{
    margin-top: 1em;
}

div.block div.images.apres_texte div.image,
div.block div.images.avant_texte div.image{
    display:block;
    float:left;
}

/* Légende sur les images */
div.block div.images div.image .legende{
    display:block;
    font-size: 11px;
    font-family: Arial;
    margin-top: 7px;
}

/* Images à gauche dans le texte */
div.block div.texte div.images.gauche_texte{
    float:left;
    margin-right:20px;
    margin-bottom:4px;
}

/* Images à droite dans le texte */
div.block div.texte div.images.droite_texte{
    float:right;
    margin-left:20px;
    margin-bottom:4px;
}