
/* CHAT ----------------------- */

.chatbox{	
	z-index:999998 !important;
	text-align: left;	
	position: fixed;	
	bottom: 0px;
	right: 10px;
	width: 210px;
	height: 301px;
	
}
.chatbox, .chatbox * {
	-webkit-box-sizing: border-box !important;
	-moz-box-sizing:    border-box !important;
	box-sizing:         border-box !important;
}
/* chat box default border */
.cb_default {
	border: 1px solid #ccc;
	background-color: #fff;	
}
/* chat box highlight when in focus */
.cb_highlight {
	border: 1px solid #000;
	background-color: #EFEFEF;	
}


/* CHAT PARTNER NAME */
.chatbox .header{
	height: 30px;
	line-height: 30px;
	padding:0;
	color: #fff;
	width: 100%;
	float: left;
}

.header_bg_default {
	background-color: #000;
}

.header_bg_blink {
	background-color: #ff0000;
}


.chatbox .header p.chat_name {
	float: left;
	height:30px;
	line-height:30px;
	padding:0 0 0 6px;
}
.chatbox .header a {
	float: right;
	text-decoration: none;
	color: #fff;
	display: block;
	height:28px;
	line-height:28px;
	margin-right: 4px;
	padding: 0;
}
.chatbox .header a:hover {
}
.chatbox .header a img {
	margin: 0;
	vertical-align:middle;
}


/* CHAT AREA WHERE TEXT APPEARS */
.chatbox .chat_area{
	float: left;
	clear: left;
	width: 100%;
	height: 200px;	
	margin-top: 5px;	
	margin-bottom: 5px;
	overflow: auto;	
}

.chatbox .chat_area p{
	padding-left: 8px;	
	padding-right: 8px;	
	font-size: 12px;
	line-height: 22px;
	float: left;
	clear: left;
	word-wrap: break-word;
	max-width: 176px;
}



/* CHAT MESSAGE BOX */
.chatbox .chat_message{	
	width: 100%;
	height: 55px;	
	float: left;
	clear: left;	
}

.chatbox .chat_message textarea {
	font-family: "Trebuchet MS", sans-serif;
	font-size:12px;
	border: 1px solid #ddd;
	width: 206px;
	height: 55px;
	margin-left: 1px;
	padding: 2px;
}

.chatbox .chat_message textarea:hover {
	border: 1px solid #3994f9;
}

.chatbox a.maximize_chatbox {
	display: none;
}

.chatbox .close_chatbox, .chatbox .clear_chatbox, .chatbox .popup_chatbox {
	padding:0;
}

.chatbox .chat_area .error{
	color: #c30000;
	font-style: italic;
}

.chatbox .chat_area p{
	font-size: 12px;
	line-height:14px;
	margin-bottom: 12px;
}

.chatbox .chat_area .me{
	clear: both;
	max-width:80%;
	background-color: #ddf;
	float:left;
	padding:3px 5px 3px 5px;
	margin-left:4px;
	color: #000;
	border-radius:5px;
	box-shadow: 2px 2px 5px #666;
}
.chatbox .chat_area .notme{
	clear: both;
	max-width:80%;
	background-color:#dfd;
	float:right;
	padding:3px 5px 3px 5px;
	margin-right:6px;
	color: #000;
	border-radius:5px;
	box-shadow: 2px 2px 5px #666;
}

.chatbox .chat_area .system{
	clear: both;
	color: #aaa;
	font-style: italic;	
}

.chatbox .chat_area .chatbox_smiley{
	width:13px;
	height:13px;
}

.chatbox .chat_user_replying{
	position:absolute;
	top:203px;
	left:6px;
	display:none;
}