/*-----------------------------------------------------------------------------
  [CSS - ezwall.css]

  Feuille de style des wall
  
  1. Générique
  2. Ajour d'un message
  3. Liste des messages

-----------------------------------------------------------------------------*/


/*---------------------------------------------------------------------------
  [1. Générique]
*/


    #embed-wall {
        clear: both;
        padding-top: 20px;
    }

/*---------------------------------------------------------------------------
  [2. Ajout d'un message]
*/

    #wall-message-form {
        clear: both;
        padding: 10px 20px;
    }

        #wall-message-form h2 {
            margin-top:0;
        }

        #wall-message-form textarea {
            float: left;
            height: 33px;
            width: 514px;
        }

        #wall-message-form .button-post {
            float:right;
            height: 45px;
            width: 63px;
        }

        #wall-message-form .button-post:hover {
            background-position: 0 -45px;
        }

        #wall-message-form input.notify {
            clear: both;
            float: left;
            margin-left: 20px;
            padding: 0;
            height: 5px
        }

        #wall-message-form label.notify {
            float: left;
            font-size: 9px;
        }

/*---------------------------------------------------------------------------
  [3. Liste des messages]
*/

    #wall-messages {
        clear:both;
        float:left;
        margin:20px 0 0;
        list-style-type: none;
        width:100%;
    }
    
        #wall-messages li {
            clear:both;
            float:left;
            font-size:15px;
            margin-bottom:15px;
            width:100%;
        }
        
        #wall-messages li:last-child {
            margin-bottom:0;
        }

            #wall-messages li a img,
            #wall-messages li a .anonymous_image,
            #wall-messages li .anonymous_image {
                float: left;
                margin-right: 5px;
            }

        .message-content {
        	padding-left: 60px;
        }

            .message-content a {
            	font-size: 13px;
            	font-weight: bold;
            }
            
            .message-content span.date {
                font-size: 12px;
            	font-family: Arial;
            }

            .message-content p {
                font-size: 13px;
            }


