 /**
 *  Main.css : 
 *	Contains all the layout information for the chat client.
 *	The Item class description is based off of an iPhone Aptana Project plugin
 *	All other class descriptions are my own.
 *	By Tristan Leonard, programmed originally for use on www.theblowmedown.com
 *	This code, or portions of it, are free to use in any project as long as some
 *	mention of the source is made. My explicit consent is not necessary, but if 
 *	you like you may let me know that my code is being utilized and, hopefully, 
 *	improved upon! My e-mail address is trisco2001@gmail.com.
 */

		body 
		{
	        margin: 0px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
	        font-family: Helvetica;
	        background: #FFFFFF;
//		background: #FFFFFF;
	        color: #555555;
	        overflow:hidden;
	    }
		
		.Conversation{
			font-size: x-small;
			overflow: scroll;
			text-align: left;
			height: 200px;
		}

		.TextLabel{
			font-size: x-small;
		}
		
		.PosterName{
			font-size: 10px;
			font-weight:bold;
		}
		.PosterDate{
			text-align: right;
			font-weight:bold;
		}
		
		.Message{
			font-weight:lighter;
			color: #333333;
		}
	    
	    .Item {
	        border-bottom: 0px solid #E0E0E0;
	        padding: 4px 4px 4px 4px;
	        color: #000000;
		background: #FFFFFF;
//		width: 100%;
	    }
		
		.GraphicCell{
//			background: #BBCCFF;
			background: #0FFFCC;
		}
		
		.TypeStatus{
			font-size: xx-small;
		}

	    .ItemChatBar {
	        border-bottom: 0px solid #E0E0E0;
	        padding: 4px 4px 4px 4px;
	        color: #000000;
		background: #FFFFFF;
	    }
		
