/*   
 Developer: Tim Noerr
 Project: build a message board that can be implemented on a web page
 Date: 7/28/14
*/

#smallerFont{
font-color: red;
}

#messageDiv {    
    overflow: scroll;
    background-image:  url(images/greyBackground.gif);
    height:320px;
    width:215px;
    float:left;
    padding: 15px;
    border:2px solid;
    border-color:#888888;
}

#messageFormDiv {
    float:right;
    background-image:  url(images/greyBackground.gif);
    height:320px;
    width:180px;
    padding:15px;
    border:2px solid;
    border-color:#888888;
}

#messageBoardDiv{
    float: right;
    height:420px;
    width:470px;
    border:10px solid;
    border-color:#888888;
    padding:10px;
    background-image:  url(images/greyBackground.gif);
}