/* CSS Document */

#chat-box {
	position: fixed;
	display: none;
	width: 400px;
	border: 3px groove #AAA;
	top: 50px;
	left: 50%;
	margin-left: -200px;
	z-index: 10;
}

	#chat-box div {
		width: 400px;
	}

#chat-box-close {
	background-color: #777;
	text-align: right;
}

	#chat-box-close a {
		color: white;
	}

#chat-box-header {
	height: 65px;
}

#chat-message {
	height: 182px;
	color: #000000;
	background-color: white;
}

#chat-form-div {
	background-color: #777;
	height: 158px;
}

	#chat-form-div input.button, #chat-form-div input.submit {
		font-size: 8pt;
		width: 92px;
		margin-top: 5px;
	}
	
	#chat-form-div input.button {
		float: left;
		margin-left: 7px;
	}
	
	#chat-form-div input.submit {
		float: right;
		margin-right: 7px;
	}

#chat-question {
	border: none;
	width: 386px;
	height: 110px;
	margin: 7px;
}
	