#chat {
    width: 600px;
    position: relative;
    float: left;
}

#chatPostForm {
	margin: 0;
	padding: 0;
	float: left;
}

#postMessage {
    float: left;
    width: 600px;
    background-color: #92c54f;
    border-bottom: 1px solid #ffffff;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
}

#postMessage input#chatUserName {
    float: left;    
    width: 111px;
    margin: 10px 0 10px 10px;
    height: 22px;
    padding: 2px;
    color: #353535;
    font: bold 18px/18px Arial, Helvetica, sans-serif;
}

#postMessage #messageContent {
    float: right;
	font-size: 12px;
	line-height: 12px;
    overflow-y: auto;
    padding: 2px;
    width: 355px;
    height: 26px;    
    margin: 10px;
    font: 12px/12px Arial, Helvetica, sans-serif;
}

#postMessage #messageContent.wide {
    width: 489px;
    float: left;
}

* html #postMessage #messageContent.wide {
	width: 488px;
}

#postMessage #submitMessage {
    float: right;
    cursor: pointer;
	width: 83px;
	height: 52px;
}

#chatLog {
	font-size: 12px;
	line-height: 14px;
    color: #525252;
}

#chatLog div.message {
    float: left;
    clear: both;
    border-bottom: 1px solid #ffffff;
    background-color: #b2d880;
    width: 100%;
}

    #chatLog div.message.guest {
        background-color: #cfcfcf;
    }

#chatLog div.message div.messageInfo, #chatLog div.message div.messageContent {
    padding: 10px;
}

#chatLog div.message div.messageInfo {
    float: left;
    font-weight: bold;
    width: 120px;
    color: #353535;
    cursor: pointer;
}

    #chatLog div.message.guest div.messageInfo {
        cursor: default;
    }

    #chatLog div.message div.messageInfo span.messagePoster, #chatLog div.message div.messageInfo span.messageDate {
        display: block;
        width: 120px;
    }
    
    #chatLog div.message span.messageDate {
        color: #ffffff;
        font-size: 11px !important;
    }

#chatLog div.message div.messageContent {
    float: right;
    width: 440px;
    min-height: 30px;
    background-color: #e6f3d5;
    font: 11px/14px "Lucida Grande", Verdana, Arial, sans-serif;
}

* html #chatLog div.message div.messageContent {
	height: 30px;
}

	#chatLog div.message.unRead div.messageContent {
		background-image: url(/i/images/lamp_tiny.png);
		background-position: right top;
		background-repeat: no-repeat;
		padding-right: 10px;
	}
	
    #chatLog div.message.guest div.messageContent {
        background-color: #efefef;
    }

    * html #chatLog div.message p {
        height: 30px;
    }

    #chatLog div.message div.messageContent a {    
        color: #4489ba;
    }
    
    #chatLog div.message div.messageContent a:hover {
        color: #5bace5;
    }
    
#chatLog div.message.emptyClone {
    display: none;
}

#userProfileViewer {
    position: absolute;    
    left: -500px;
    top: 0px;
    opacity: 0;
	filter: alpha(opacity = 0);
    z-index: 1000;
    background: #000;
    color: #fff;
    padding: 10px 10px 8px 33px;
    min-height: 46px;
    width: 220px;
    background: url(/i/images/chatprofile_bg.png) left top no-repeat;
}
* html #userProfileViewer {
	background: url(/i/images/chatprofile_8bit_bg.png) left top no-repeat;
}	

    #userProfileViewer img.loading {
        margin: 6px 0 0 10px;
        height: 31px;
        width: 31px;
        float: left;
    }
    
    #userProfileViewer h3 {
    	padding: 13px 0 0 10px;
    	font-weight: bold;
    	font-size: 16px;
    	float: left;
    }
    
    #userProfileViewer img.avatar {
    	height: 56px;
    	width: 56px;
        float: right;
        margin: 0 0 4px 10px;
        border: 1px solid #ffffff;
    }