/* The div container for the whole chat, high value of z-index so the chat will always be on top! */
img {
	border: 0px;
}
#chat_help_container {
	position: fixed;
	right: auto;
	left: 0px;
	bottom: 0px;
	width: 50px;
	height: 24px;
	z-index: 999;
	
	background-color: #F4F4F4;
	background-image: url('chat_bar_item_list_bg.png');
	background-repeat: repeat-x;
	border-top: 1px solid #999;
}
#chat_help_container a {
	display: block;
	height: 24px;
	padding-left: 10px;
	line-height: 24px;
	
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 11px;
	font-weight: bold;
	color: #666;
}
#chat_container {
	position: fixed;
	right: 50px;
	left: 50px;
	bottom: 0px;
	width: auto;
	height: auto;
	z-index: 999;
}

/* The container for the chat windows. */
#chat_windows {
	position: relative;
	height: auto;
	width: 100%;
	margin: 0px;
	padding: 0px;
	
	background: none;
	border: 0px;
}

/* A chat window container */
.chat_window_item {
	position: fixed;
	width: 200px;
	height: 304px;
	
	border-top: 1px solid #999;
	border-right: 1px solid #999;
	border-bottom: 0px;
	border-left: 1px solid #999;
	z-index: 1200;
}
/* Header of a chat window */
.chat_window_item_header {
	position: relative;
	width: 100%;
	height: 40px;
	
	background-color: #e8e8e8;
}
.chat_window_item_header_img {
	position: relative;
	width: 30px;
	height: 30px;
	float: left;
	margin: 5px 0px 0px 5px;
	overflow: hidden;
	
	background: #e8e8e8;
}
.chat_window_item_header_name {
	position: relative;
	width: auto;
	height: auto;
	float: left;
	margin: 12px 0px 0px 10px;
	
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 12px;
	color: #666;
}
.chat_window_item_header_options {
	position: relative;
	width: auto;
	height: auto;
	float: right;
	margin: 3px 5px 0px 0px;
	
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 11px;
}
.chat_window_item_header_options a {
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 11px;
	color: #333;
	text-decoration: none;
}
.chat_window_item_header_options a:hover {
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 11px;
	color: #666;
	text-decoration: none;
}
/* The container where all the messages will be */
.chat_window_item_messages {
	position: relative;
	width: 200px;
	height: 244px;
	overflow: auto;
	
	background: #F4F4F4;
}
.chat_window_item_message {
	position: relative;
	width: auto;
	height: auto;
	
	margin: 5px 5px 5px 5px;
	border-top: 1px solid #999;
}
.chat_window_item_message_header {
	padding-top: 4px;
	position: relative;
	width: 100%;
	height: auto;
}
.chat_window_item_message_name {
	position: relative;
	width: auto;
	height: auto;
	float: left;
	
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 11px;
	color: #333;
}
.chat_window_item_message_time {
	position: relative;
	width: auto;
	height: auto;
	float: right;
	
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 9px;
	color: #333;
}
.chat_window_item_message_text {
	position: relative;
	width: 100%;
	height: auto;
	clear: both;
	padding: 4px 0px 5px 0px;
	
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 11px;
	color: #000;
}
/* Style for the text input on the chat windows */
.chat_window_item_input {
	position: relative;
	width: 100%;
	height: 20px;
	
	background: #fff url('chat_type_icon.gif');
	background-repeat: no-repeat;
}
.chat_window_item_text_input_style {
	position: relative;
	width: 179px;
	height: 17px;
	float: right;

	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 11px;
	border-top: 1px solid #999;
	border-right: 0px;
	border-bottom: 0px;
	border-left: 1px solid #999;
}
/* The container for the chatbar at the bottom */
#chat_bar {
	position: relative;
	min-height: 24px;
	width: 100%;
	margin: 0px;
	padding: 0px;
	clear: both;
	overflow: hidden;
	
	background-color: #F4F4F4;
	border-top: 1px solid #999;
	border-right: 1px solid #999;
	border-bottom: 0px;
	border-left: 1px solid #999;
}

/* The container for the list button */
#chat_bar_item_list_button {
	position: relative;
	height: 24px;
	width: 170px;
	float: left;
	
	background-image: url('chat_bar_item_list_bg.png');
	background-repeat: repeat-x;
	border-top: 0px;
	border-right: 1px solid #999;
	border-bottom: 0px;
	border-left: 0px;
}

/* The container for the chat list */
#chat_bar_item_list {
	position: relative;
	width: 170px;
	height: auto;
	max-height: 304px;
	float: left;
	overflow: auto;
	
	display: none;
	border-top: 1px solid #999;
	border-right: 1px solid #999;
	border-bottom: 0px;
	border-left: 1px solid #999;
	background: #F4F4F4;
}
#chat_bar_activate {
	position: relative;
}
#chat_bar_scroll_buttons {
	position: relative;
	height: 24px;
	width: 40px;
	float: left;
	
	background-image: url('chat_bar_item_list_bg.png');
	background-repeat: repeat-x;
	border-top: 0px;
	border-right: 1px solid #999;
	border-bottom: 0px;
	border-left: 0px;
}
#chat_bar_scroll {
	position: absolute;
	left: 212px;
	height: 24px;
	right: 0px;
	
	overflow: hidden;
	border: 0px;
	background: none;
}
#chat_bar_scroll_content {
	position: absolute;
	left: 0px;
	height: 24px;
	width: 1500px;
	
	overflow: hidden;
	border: 0px;
	background: none;
}
/* An item on the chatbar */
.chat_bar_item {
	position: relative;
	height: 24px;
	width: 140px;
	float: left;
	margin-left: -1px;
	
	background-image: url('../chat/chat_bar_item_list_bg.png');
	background-repeat: repeat-x;
	border-top: 0px;
	border-right: 1px solid #999;
	border-bottom: 0px;
	border-left: 1px solid #999;
}

/* Container for the name of a person on the chatbar */
.chat_bar_item_name {
	position: relative;
	height: auto;
	width: auto;
	float: left;
	margin-top: 5px;
	margin-left: 4px;
	
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 11px;
	color: #000;
}
.chat_bar_item_name a {
	color: #000;
	text-decoration: none;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 11px;
}
.chat_bar_item_name a:hover {
	color: #666;
	text-decoration: underline;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 11px;
}
.chat_bar_item_new_message {
 	position: relative;
	height: auto;
	width: auto;
	float: right;
	margin-top: 4px;
	margin-right: 5px;
}

/* Container for the close button of a person on the chatbar */
.chat_bar_item_close {
	position: relative;
	height: auto;
	width: auto;
	float: right;
	margin-top: 5px;
	margin-right: 4px;
	
	font-family: Verdana, Arial, Sans-Serif;
	font-size: 11px;
	color: #000;
}
.chat_bar_item_close a {
	color: #000;
	text-decoration: none;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 11px;
}
.chat_bar_item_close a:hover {
	color: #666;
	text-decoration: none;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 11px;
}

/* Container for a chat session item on the chat list */
.chat_list_user_item {
	position: relative;
	width: 100%;
	height: 24px;
	margin: 5px 0px 5px 0px;
	
	background: #99FFCC;
}
.chat_list_user_item_img {
	position: relative;
	width: 24px;
	height: 24px;
	margin: 0px 0px 0px 5px;
	float: left;
	overflow: hidden;
	
	background: #99FFCC;
}
.chat_list_user_item_name {
	position: relative;
	height: auto;
	width: auto;
	float: left;
	margin: 4px 0px 0px 5px;
}
.chat_list_user_item_options {
	position: relative;
	height: auto;
	width: auto;
	float: right;
	margin: 1px 5px 0px 0px;
}
.chat_list_user_item_options a {
	color: #666;
	text-decoration: none;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 9px;
}
.chat_list_user_item_options a:hover {
	color: #999;
	text-decoration: underline;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 9px;
}
.chat_list_user_item_name a {
	color: #000;
	text-decoration: none;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 11px;
}
.chat_list_user_item_name a:hover {
	color: #666;
	text-decoration: underline;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 11px;
}
.chat_accepted {
	background: url('../chat/chat_accepted.png');
	width: 131px;
	height: 89px;
}
.chat_pending_mem {
	background: url('../chat/chat_pending_mem.png');
	width: 131px;
	height: 89px;
}
.chat_pending_esc {
	background: url('../chat/chat_pending_esc.png');
	width: 131px;
	height: 97px;
}
.chat_busy {
	background: url('../chat/chat_busy.png');
	width: 131px;
	height: 89px;
}
