/*
 * css file for jQuery Chat
 *
 * @copyright Copyright (C) 2009 KANekT @ http://blog.kanekt.ru
 * @license http://www.gnu.org/licenses/gpl.html GPL version 2 or higher
 * @package jQuery Chat
*/

/* Важное свойство */
.chat {
	height: 200px;
	overflow: auto; /* Это позволяет отображать полосу прокрутки */
	position: relative; /* Это позволяет съезжать тексту в слое, не растягивая страницу */
	text-align: left;
	border: solid #818181 1px;
}

.chat a { cursor: pointer; }

.chat .del { display: inline; color: red; font-weight: bold; opacity: .5; }
.chat .date-time { display: inline; opacity: .5; }

.chat .reply { text-decoration: underline; font-weight: bold; }

.chat div {
        position: absolute; /* Страница остаётся того же размера */
}
 
.chat span {
	display: block;
	padding: 2px;
}
 
.chatform input[type=text],textarea {
        width: 80%;
        border: solid #818181 1px;
}
 
/* Для CSS 3 */
.r4 {
        border-radius: 4px;
}

#chat-control { text-decoration: none; }

