/* CSS Document */

*
{
	margin: 0px;
	padding: 0px;
}

body
{
 background-color: #000000;
 color: #00ff00;
 font-family: "Courier New", Courier, monospace;
 
}



#ChatRoomContainer
{
	width:100%;
}

#ChatRoomHeader
{
	position: relative;
	background-color: #000000;
	height: 5em;
}

#ChatToolBar
{
	background-color: #330000;
	float: left;
	width: 240px;
	height: 100px;
}


#ChatMessages
{
	background-color: #000066;
	float: left;
	width: 300px;
	height: 200px;
}

#ChatSideBar
{
	background-color: #888888;
	float: left;
	width: 160px;
	height: 100px;
}


