/* Phosphorix Portal
URL: http://www.phosphorix.com/phos-shed/
Version: 1.0
Author: Daniel Cottam
Author URL: http://www.phosphorix.com
Created: 14/10/08 */

/* Chat modal */
div.channel{
	position: absolute;
	width:350px;
	border: 1px solid #FFA500;
	z-index:500;
	background-color: #ffffff;	
}
div#channelinner{
	visibility: visible;
	display: block;
}

/* General styles */
div#chat-pane{
	font-size: 80%;
	width:100%;
	overflow: scroll;
}
input#chatline{
	width:290px!important;
}
input#chat-submit{
	margin-left:5px;
	width:45px!important;
}

div#chat-pane span.entrynick,
div#chat-pane span.entrytime{
	margin-right: 5px;
	vertical-align: top;
}
div#chat-pane a.joinchannel{
	margin-left:5px;
}
/* SYSTEM_ENTRY = 0 */
div#chat-pane div.entrytype0{
	background-color: #eee;
}
div#chat-pane div.entrytype0 span.entrycontent{
	font-weight: bold;
	font-style: italic;
}
div#chat-pane div.entrytype0 .entrynick{
	display:none;
	visibility:hidden;
}
/* USER_CHAT_ENTRY = 1*/
div#chat-pane div.entrytype1{}
/* USER_MSG_READ = 2, USER_MSG_NO_REPLY_READ = 4, USER_MSG_EMAIL_REPLY_READ = 6 */ 
div#chat-pane div.entrytype2,
div#chat-pane div.entrytype4,
div#chat-pane div.entrytype6{
	background-color: #99ff99;
}
/* USER_MSG_UNREAD = 3, USER_MSG_NO_REPLY_UNREAD = 5, USER_MSG_EMAIL_REPLY_UNREAD = 7 */
div#chat-pane div.entrytype3,
div#chat-pane div.entrytype5,
div#chat-pane div.entrytype7{
	background-color: #ffcccc;
}

div#chatoffline{
	background-color: #ff9999;
	border: 1px solid red;
	text-align: center;
	margin: 2px 20px 2px 20px;

}
