﻿div#chatContainer 
{
	border: 1px solid #999;
    height: 400px;
	position: relative;
}

div.chatMainContainer {
	left: 0;
	position: relative;
	width: 500px;
}

span.error 
{
    color: Red;
}

span.self 
{
    font-weight: bold;
}

div.chatTranscripts 
{
    background: #ffffff;
    height: 342px;
    overflow-y: auto;
    width: 100%;
}

    div.chatTranscripts div.message 
    {
        overflow: hidden;
        margin: 0 0 10px 0;
		width: 100%;
    }
    
    div.chatTranscripts div.message div.handle 
    {
        clear: left;
        color: Navy;
		float: left;
        height: 100%;
        padding: 0 5px 0 5px;
        font-weight: bold;
    }
    
    div.chatTranscripts div.message div.body 
    {
        height: 100%;
		width: 100%;
		margin: 0 5px 0 5px;
    }
    
        div.chatTranscripts div.message div.body em.me 
        {
            color: #999999;
        }
        
        div.chatTranscripts div.message div.body span.notice 
        {
        	clear: both;
            color: #999999;
            float: left;
            text-align: center;
            width: 100%;
        }
        
        div.chatTranscripts div.message div.body span.msg 
        {
            color: Orange;
        }

div.chatInput 
{
	border-top: 1px solid #999;
    float: left;
    height: 50px;
	margin:  0;
	padding: 1;
	overflow: hidden!important;
    width: 500px;
}

    div.chatInput .txtInput 
    {
    	border: none;
        height: 100%;
        margin: 0;
        padding: 0;
        width: 500px;
    }

div.chatUsers 
{
    background: #dce4eb;
	border-left: 1px solid #999;
    height: 100%;
	margin: 0;
    overflow-y: auto;
	position: relative;
	width: 150px;
}

    div.user 
    {
        color: #000;
        padding: 5px;
    }
    
    div.user.away 
    {
        color: #999999;
        font-style: italic;
    }
    

div.chatHandleInput 
{
    display: none;
}