/*
style.css 1a
*/
.fb_iframe_widget {
    background: #FFF;
}

#feed .post{
    border-bottom: 1px solid #CCC;
    margin-bottom: 10px;
}

#feed .post .image img{
    max-width: 400px;
    height: auto;
}
#feed .post .message{
    width: 400px;
    line-height: 1.2em;

    overflow: hidden;
    text-overflow: ellipsis;
    
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;

    margin-bottom: 10px;
}

#feed .post:hover{
    background: #f6fab6;
}

#feed .post .actions{
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
}

#feed .post .actions input,
#feed .post .actions textarea{
    width: 300px;
    margin-bottom: 10px;
}

#feed .post .actions textarea{
    height: 100px;
}