/*
 * style.css
 * (c)2008 Bell Systems
 *
 * Styles for chat
 *
 */
 
body
{
    font-family:Times;
    font-size:12px;
    width:auto;
    border:0px;
    margin:0px;
    padding:0px;
} 

div
{
    margin:0px;
    padding:0px;
    border:0px; 
}

div.left_container
{
    margin:15px;
}

div.you_say
{
	margin:2px;
	font-weight:bold;
	color:blue;
}

div.they_say
{
	margin:2px;
	font-weight:bold;
	color:green;
}

div.system_says
{
    margin:2px;
    font-weight:bold;
    color:red;	
}

div.chat_contents
{
    border:1px solid gray; 
	height:190px; 
	overflow:auto;	
}

div.private_chat_contents
{
    overflow:auto;
	margin-left:4px;
}

div.chat_users_floatbox
{
	border:1px solid gray;
	height:100px;
	width:140px;
	position:absolute;
	top:71px;
	/*right:15px;*/
	right:15px;
	background-color:white;
	z-index:7;
	display:none;
}

div.chat_users_topbar
{
	height:17px;
	border-bottom:1px solid gray;
	background-color:#dddddd;
	z-index:501;
}

div.chat_users
{
	width:180px;
	height:183px;
	overflow:auto;
}

div.chat_users li
{
	margin-left:7px;
	list-style:disc inside;
	color:green;
}

input.textbox
{
    background-color: #eeeeee;
    border: 1px solid gray; 
    width:142px;
    padding:2px;
}

span.chat_users_topbar_text
{
    position:relative; 
	top:1px; 
	left:4px;	
}

span.system_says
{
    font-weight:bold;
    color:red;  
}

.js_link, .js_link_bold
{
	text-decoration:underline;
}

.js_link_bold
{
	font-weight:bold;
}

.js_link:hover, .js_link_bold:hover, .js_link_no_underline:hover
{
	cursor:pointer;
}

img.link_triangle
{
    margin-left:5px;
    text-decoration:none;
}

img.link_triangle:hover
{
    cursor:pointer;
}
