﻿#ChatWrapper
{
	position: relative;
	
	width:250px;
	height:400px;

	margin-bottom:4px;
	margin-top:3px;

	color:Black;

	background-image: url('chat/ChatBackground.jpg');
}

#ChatIntro1
{
	position: absolute;
	
	top:6px;
	left:7px;
	
	color:White;
	font-weight:bold;
}

#ChatIntro2
{
	position: absolute;
	
	top:32px;
	left:7px;
	
	color:White;
	font-weight:bold;
}

#ChatBody
{
	position: absolute;
	
	top:60px;
	left:9px;
	
	width:230px; /* 9 + 1 + 230 + 1 + 9 = 250 */
	height:234px;
	
	/*border-width: 2px;
	  border-style: inset;
	  border-color: #8d0000 #ffb2b2 #ffb2b2 #8d0000;*/
	border-width: 1px;
	border-style: solid;
	border-color: #995050;
	
	overflow:auto;

	-moz-border-radius:4px;
	-webkit-border-radius:4px;	

	background-color:White;	
}

	.chatMsgRow
	{
		padding-top:2px;
		padding-bottom:0px;
	}
	.chatMsgName
	{
		color:Red;
		font-weight:bold;
	}

	.chatMsgDate
	{
		color:Red;
		font-weight:bold;
	}

	.chatMsgBody
	{
	}

	.chatMsgEmpty
	{
		padding-top:2px;
	}

#ChatNameLabel
{
	position: absolute;
	
	top:304px;
	left:9px;
}

#ChatNameInput
{
	position: absolute;
	
	top:300px;
	left:45px;

	width:193px;
	
	/*border-width: 2px;
	  border-style: inset;
	  border-color: #8d0000 #ffb2b2 #ffb2b2 #8d0000;*/
	border-width: 1px;
	border-style: solid;
	border-color: #995050;

	-moz-border-radius:4px;
	-webkit-border-radius:4px;			

	font-size:11px;	
}

#ChatMsgLabel
{
	position: absolute;
	
	top:317px;
	left:9px;	
}

#ChatMsgTextArea
{
	position: absolute;
	
	top:329px;
	left:9px;

	width:230px; /* 9 + 1 + 230 + 1 + 9 = 250 */
	height:46px;
	
	/*border-width: 2px;
	  border-style: inset;
	  border-color: #8d0000 #ffb2b2 #ffb2b2 #8d0000;*/
	border-width: 1px;
	border-style: solid;
	border-color: #995050;

	-moz-border-radius:4px;
	-webkit-border-radius:4px;			
	
	font-size:11px;	
}

#ChatSubmitButton
{
	position: absolute;
	
	bottom:0px;
	right:8px;

	width:60px;
	
	font-size:11px;
}
