/* Div qui contient les chatboxes */
#chatboxes-horizontal-scroll
{
	position:fixed;
	bottom:0;
	overflow:auto;
	text-align:left;
	right:20px;
	z-index:1;
}
/* Propriétés de toutes les chatboxes */
.chatbox
{
	float:right;
	width:200px;
	height:250px;
	border:2px solid #45a2fa;
	border-bottom-width:0;
	background:
		#FFF
		url('../images/chat-title-bg.png')
		repeat-x
		scroll
		top left;
	margin-left:20px;
	cursor:default;
	position:relative;
}

.chatbox h1
{
	float:left;
	width:135px;
	color:#45a2fa;
	font-size:1em;
	margin:7px 0 0 7px;
	padding:0;
	overflow:hidden;
}
.chatbox .gui-controls
{
	float:right;
	width:55px;
}
.chatbox-body
{
	overflow:auto;
	position:absolute;
	bottom:0;
	height:215px;
}
#chatboxes-container
{
	float:right;
}

/* Boutons de contrôle, minimiser, fermer une fenêtre et éteindre le chat */
.minimize, .close, .switch
{
	display:block;
	width:19px;
	height:18px;
	float:right;
	margin:7px 7px 0 0;
}
.minimize
{
	background:
		#FFF
		url('../images/chat-minimize.png')
		no-repeat
		scroll
		top left;
}
.close
{
	background:
		#FFF
		url('../images/chat-close.png')
		no-repeat
		scroll
		top left;	
}
.switch
{
	background:
		#FFF
		url('../images/chat-switch.png')
		no-repeat
		scroll
		top left;
}

/* Propriétés propres à la chatbox de la liste de contacts */
.my-online-friends .chatbox-body a
{
	display:block;
	background:
		#FFF
		url('../images/chat-li.png')
		no-repeat
		scroll
		center left;
	padding-left:15px;
	margin-left:7px;
	margin-bottom:7px;
	font-weight:bolder;
}

/* Propriétés propre aux autres chatboxes */
.my-friend.hidden_chatbox
{
	display:none;
}
.my-friend .chatbox-body
{
	width:200px;
}
.my-friend strong, .my-friend p
{
	margin:0;
	padding:0;
	margin-left:7px;
}
.my-friend strong
{
	margin-top:5px;
	display:block;
}
.my-friend .chatbox-body
{
	bottom:20px;
	height:195px;
}
.my-friend form
{
	border-top:1px solid grey;
	position:absolute;
	bottom:0;
	width:200px;
}
.my-friend input
{
	border-width:0;
	background-color:transparent;
	height:17px;
	width:99%;
}
