.chat_box{
color:#fff;
position: fixed;
right: 2px;
bottom: 0px;
z-index: 100;
width: 350px;
background-color: transparent;
}
.chat_box input[type=text]{
display: inline;
width: 130px;
}
.chat_box:hover{

}
.chat_submit{
	max-width: 60%;	
clear:left;
float:left;
}
.chat_body, .private{
position: absolute;
z-index: 0;
margin-top: 25px;
width: 100%;
background: #475160; /* for non-css3 browsers */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#596270', endColorstr='#363E49'); /* for IE */
background: -webkit-gradient(linear, left top, left bottom, from(#596270), to(#363E49)); /* for webkit browsers */
background: -moz-linear-gradient(top,  #596270,  #363E49); /* for firefox 3.6+ */ 
    border: 1px solid #666;
-moz-box-shadow:0 0 3px #000000;
-webkit-box-shadow:0 0 3px #000000;
box-shadow:0 0 3px #000000;
}
.chat_window, .chat_window_private{
color: #000;
height: 100px;
width: 60%;
float:left;
overflow: auto;
background-color: #eee;
   -moz-box-shadow:inset 0 0 3px #888888;
   -webkit-box-shadow:inset 0 0 3px #888888;
   box-shadow:inset 0 0 3px #888888;
   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);

}
.chat_window_private{
width: 100%;
}
.chat_users{
width: 40%;
overflow: auto;
background-color: #000;
max-height: 100px;
}
.chat_me{
background-color: #DBDB3B!important;
color: #000!important;
}
.chat_user{
cursor: pointer;
padding: 0px 0 0 4px;
margin: 0px;
border-bottom: 1px solid #333;
}
.chat_user:hover{
background-color: #222;
}
.connected{
	float:left;
width: 6px;
height: 6px;
margin: 7px 4px 4px 0;
background-color: green;
 border-radius: 10px 10px 10px 10px;
}
.disconnected{
float:left;
width: 6px;
height: 6px;
margin: 8px 4px 4px 0;
background-color: red;
 border-radius: 10px 10px 10px 10px;
}
.chat_from_me{
font-weight: bold;
color: #387abd;
}
.message_from{
font-weight: bold;	
}
.message_time{
color: #666;
font-size: 10px;
}
.chat_header{
text-align: center;
position: absolute;
width: 100%;
}
.chat_tab_active{
background: #EEEEEE!important;
color: #000!important;
filter: none!important;
}
.chat_delete{
cursor:pointer;
padding: 2px;
margin: 2px;
border: 1px solid #888;
border-radius: 5px;
float:right;	
}
.chat_delete:hover{
border: 1px solid #ccc;
background-color: #333;
}
.chat_tab{
min-height: 25px;
cursor: pointer;
margin: 0 0px 0 0px;
padding: 0 5px 5px 5px;
background: #475160; /* for non-css3 browsers */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#596270', endColorstr='#363E49'); /* for IE */
background: -webkit-gradient(linear, left top, left bottom, from(#596270), to(#363E49)); /* for webkit browsers */
background: -moz-linear-gradient(top,  #596270,  #363E49); /* for firefox 3.6+ */ 
border: 1px solid #596270;
font-weight: bold;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
border-radius: 4px 4px 0px 0px;
float:left;
-moz-box-shadow:0 0 3px #000000;
-webkit-box-shadow:0 0 3px #000000;
box-shadow:0 0 3px #000000;
}
.chat_tab img{
margin-top: 4px;
}

#chat_toggle, #chat_end{
float:right;
}
.chat_tab:hover{
background: #2B323B;
filter: none;
}