/* CSS Document */

.chat {
	border: 1px solid #e6e6e6;
	background-color: #f6f6f6;
	height: 450px;
}

.chat table {
	width: 100%;
	height: 450px;
}

.chat table td {
	vertical-align: top;
}

.chat_messages {
	margin: 3px;
	padding: 0px;
	height: 420px;
	overflow: auto;
}

.chat_messages table{
	height: auto;
	align: left;
}

.chat_messages td{
	align: left;
	vertical-align: top;
}

.chat_user {
	height: 100%;
	margin: 3px;
	padding: 0px;
	font-size: 11px;
}

.chat_textfield {
	width: 460px;
}

.chat input {
	margin: 5px;
}

.chatuser {
	border: 1px solid #ccc;
	background-color: #fff;
	display: block;
	color: #333;
	text-align: left;
	margin: 3px;
	padding: 2px;
	-moz-border-radius: 4px;	/* Rounded edges in Firefox */
}

.chatdate {
	color: #777;
	font-size: 10px;
	font-style: italic;
	vertical-align: top;
}

.messagename {
	color: #777;
	font-size: 10px;
	font-style: italic;
	vertical-align: top;
}

.chatmessage {
	padding: 5px;
	margin: 3px;
	background: #fff;
	font-size: 11px;
	border: 1px solid #ccc;
	-moz-border-radius: 5px;	/* Rounded edges in Firefox */
	vertical-align: top;
}

.mychatmessage {
	padding: 5px;
	margin: 3px;
	background: #cdf;
	font-size: 11px;
	border: 1px solid #ccc;
	-moz-border-radius: 5px;	/* Rounded edges in Firefox */
	vertical-align: top;
}