﻿/* FORM ELEMENTS   
----------------------------------------------------------*/

#divChatSection
{
	margin-right: 10px;
}

#divChatSection form
{
	background:  #73182C; /* maroon */
	margin: 0px;
	padding: 0px;
	border-style: none;
	font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", "Arial", "Helvetica", "Verdana", "sans-serif";
	font-size: 12px;
}

#divChatSection input.text 
{
	width: 160px;
	border: 1px solid  #FCD116; /* gold */
	padding: 2px;
	margin: 1px;
	font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", "Arial", "Helvetica", "Verdana", "sans-serif";
	font-size: 12px;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}

#divChatSection input.message
{
	width: 160px;
	border: 1px solid  #FCD116; /* gold */
	padding: 2px;
	margin: 1px;
	font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", "Arial", "Helvetica", "Verdana", "sans-serif";
	font-size: 12px;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}

#divChatSection input.submit, #divChatSection .button
{
	background-color: white;
	border: 0 none;
	color: #73182C; /* maroon */
	font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", "Arial", "Helvetica", "Verdana", "sans-serif";
	font-size: 12px;
}

#divChatSection input.submit:hover, #divChatSection .button:hover
{
	cursor: pointer;
	background-color: #FCD116; /* gold */
}

#divChatSection label
{
	color: white;	
}

#lblCustomerMissing, #lblMessageMissing, #lblCustomerFailure, #lblFailureMessage
{
	color: #FCD116 !important; /* gold */
}

/* MISC  
----------------------------------------------------------*/

.divChatBar
{
	position: relative;
	width: 190px;
	display: none;
	background:  transparent;
	padding: 0;
	font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", "Arial", "Helvetica", "Verdana", "sans-serif";
	font-size: 12px;
}

.divChatHead
{
	position: relative;
	background-color: white;
	color: #73182C; /* maroon */
	height: 22px;
	padding: 0 0 0 86px;
	margin: 4px 0 4px 0;
}

.chat_logo
{
	background-image: url('/chat/img/chatbkg.png');
	background-repeat: no-repeat;
	background-position: 0 0;
	display: block;
	width: 76px;
	height: 20px;
	position: absolute;
	top: 1px;
	left: 5px;
}

.divChatHead:hover
{
	cursor: pointer;
	background-color: #FCD116; /* gold */
}

.divChatTitle
{
	position: relative;
	float: left;
	font-size: 14px;
	line-height: 22px;
	vertical-align: middle;
	font-weight: bold;
}

.divMinimiseButton
{
	position: relative;
	float: left;
	line-height: 22px;
	vertical-align: middle;
}

.divMinimiseButton b
{
	background-image: url('/chat/img/up_down_arrow.gif');
	background-repeat: no-repeat;
	background-position: 0 -5px;
	width: 9px;
	height: 5px;
	display: inline-block;
	line-height: 22px;
	vertical-align: middle;
}

.divChatArea
{
	background: #73182C; /* maroon */
	color: white;
	height: 200px;
	width: 190px;
	overflow-y: hidden;
	overflow-x: hidden;
	line-height: 13px;
	padding: 0 2px 4px 2px;
}

.divChatArea:hover
{
	overflow-y: auto;
	overflow-x: auto;
}

.divMessage
{
	background: white;
	position: relative;
	margin: 5px 0px 5px 0px;
	padding: 2px 2px 2px 20px;
	min-height: 20px;
}

.divMessage .imageicon
{
	position: absolute;
	top: 2px;
	left: 2px;
}

.divMessage img
{
	display:block;
	width: 16px;
	height: 16px;
}

.divMessage .chatname
{
	color: Grey; 
	font-size: 10px;
}

.divMessage .text
{
	display: inline;
	vertical-align: top;
	word-wrap: break-word;
}

.divMessage .time
{
	color: Grey; 
	font-size: 10px;
	font-style: italic;
	margin-top: 2px;
}

.divChatInput
{
	background: #73182C; /* maroon */
	width: 100%;
}

.textArea
{
	background: white;
	width: 186px;
	height: 30px;
	border: 1px solid #FCD116; /* gold */
	padding: 2px;
	margin: 2px;
	font-size: 12px;
	font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", "Arial", "Helvetica", "Verdana", "sans-serif";
	overflow-y: hidden;
	overflow-x: hidden;
}

.textArea:hover
{
	overflow-y: auto;
	overflow-x: auto;
}

.textAreaSelected
{
	border: 2px solid #FCD116; /* gold */
	padding: 1px;
}

.divLogout
{
	float: right;
	margin: 6px 1px 6px 1px;
}