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

#divChatSection form
{
	background: #FFFF99; /* #FFFBD6;  light yellow */
	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 #FFDFAD; /* light orange */
	padding: 2px;
	margin: 1px;
	font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", "Arial", "Helvetica", "Verdana", "sans-serif";
	font-size: 12px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

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

#divChatSection input.submit
{
	/* background: #FFFBD6; light yellow */
	background:url('/chat/img/button.jpg');
	border: 1px solid #FFDFAD; /* light orange */
	color: #CC3300; /* red */
	font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", "Arial", "Helvetica", "Verdana", "sans-serif";
	font-size: 12px;
}

#divChatSection input.submit:hover
{
	cursor: pointer;
	-moz-box-shadow: 0 0 5px 5px #FFDFAD inset;
	-webkit-box-shadow: 0 0 5px 5px #FFDFAD inset;
	box-shadow: 0 0 5px 5px #FFDFAD inset;
}

#divChatSection .button
{
	/* background: #FFFBD6; light yellow */
	background:url('/chat/img/button.jpg');
	border: 1px solid #FFDFAD; /* light orange */
	color: #CC3300; /* red */
	font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", "Arial", "Helvetica", "Verdana", "sans-serif";
	font-size: 12px;
}

#divChatSection .button:hover
{
	cursor: pointer;
	-moz-box-shadow: 0 0 5px 5px #FFDFAD inset;
	-webkit-box-shadow: 0 0 5px 5px #FFDFAD inset;
	box-shadow: 0 0 5px 5px #FFDFAD inset;
}

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

#divChatSection .rounded
{
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

#divChatSection .roundedtop
{
	-moz-border-top-right-radius: 4px;
	-moz-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-webkit-border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
}

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

.divChatHead
{
	position: relative;
	/* background-color: #CC3300; red */
	background-image: url('/chat/img/button_bkg.png');
	background-repeat: repeat-x;
	background-position: 0 0;
	color: white;
	height: 30px;
	padding: 0 0 0 105px;
	margin: 0px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

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

.divChatHead:hover
{
	cursor: pointer;
	margin: 1px;
	-moz-box-shadow: 0 0 2px 1px #C0C0C0; /* silver */
	-webkit-box-shadow: 0 0 2px 1px #C0C0C0; /* silver */
	box-shadow: 0 0 2px 1px #C0C0C0; /* silver */
}

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

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

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

.divChatArea
{
	background: #FFFF99; /* #FFFBD6;  light yellow */
	color: #333333;
	height: 200px;
	width: 208px;
	overflow-y: hidden;
	overflow-x: hidden;
	line-height: 13px;
	margin: 0 1px 6px 1px;
}

.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:  #FFFBD6; /* light yellow */
	width: 100%;
}

.textArea
{
	background: White;
	width: 100%;
	height: 30px;
	border: 1px solid #FFDFAD; /* light orange */
	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 #FFDFAD; /* light orange */
	margin: 1px;
}

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