/******************************************************************************
** Live Chat
*******************************************************************************/
	* {
		padding: 0;
		margin: 0;
	}
	
	#err {
		display: none;
	}

	#sendmsg_pane {
		width: 600px;
		font: .75em/1.2 "Helvetica","Verdana", sans-serif;
		padding: 5px;
	}

	#sendmsg_pane h2 {
		display: block;
		margin: 0;
		padding: 5px 12px;
		background: #F3C525;
		padding-bottom: 5px;
		z-index: -1;
		-moz-border-radius-topleft: .5em;
		-webkit-border-top-left-radius: .5em;
		font-size: 1.1em;
		font-family: "Georgia", serif;
		font-weight: bold;
	}

	/* Chat Output */
	#iResp {
		overflow: auto;
		height: 313px;
		-moz-border-radius-topleft: .5em;
		-webkit-border-top-left-radius: .5em;
		border: 1px solid #ECC023;
		border-bottom: none;
		margin-top: -5px;
		background: #FFF;
	}

	.msg {
		margin: 2px 0 0 10px;
		padding: 0 0 5px;
		border-top: 1px solid #FCF6DE;
		background: url('images/chatTextBackground.png') repeat-y left top;
		float: left;
		width: 550px;
	}

	.msg_origin {
		clear:left;
		width: 40px;
		height: 35px;
		text-indent: -1000em;
		display: block;
		background: transparent url('images/you.png') no-repeat left top;
	}

	p.randb {
		background: transparent url('images/randb.jpg') no-repeat left top;
	}

	.msg_origin,
	.msg_content {
		float: left;
		margin: 0;	
	}

	.msg_content {
		width: 500px;
		line-height: 1.2;
	}

	.msg_origin_user {

	}

	/* Chat Input Bit */
	#sendmsg_pane form {
		padding: 0;
		margin: 0;
	}
	#inputContainer {
		-moz-border-radius-bottomright: .5em;
		-webkit-border-bottom-right-radius: .5em;
		background: #000 url('images/chatBackground.png') repeat-x left bottom;
		padding: 5px 5px 8px 5px;
	}

	#inputContainer input {
		margin: 0;
		padding: 0;
		vertical-align: top;
		border: none;
	}

	#inputContainer #msgArea {	
		width: 525px;
		height: 15px;
		padding: 3px 0;
	}

	#inputContainer #sendButton,
	#inputContainer #quitButton {
		display:inline-block;
		background: url('images/sendbutton.png') no-repeat -5px -5px;
		width: 55px;
		text-indent: 1000px;
		height: 21px;	
		cursor: pointer;
		-moz-border-radius-bottomright: .5em;
		-webkit-border-bottom-right-radius: .5em;
		font-size: 0px;
		line-height: 0px;
	}