@charset "iso-8859-1";
/* CSS Document */
#chat{
	position:fixed;
	border: 1px solid #999;
	background-color:#666;
	width: 200px;
	bottom: -1px;
	height:30px;
	right: -1px;
	z-index: 20000;
	text-shadow:none;
}

#chat h1{
	position:relative;
	border-bottom: 1px solid #999;
	width: 190px;
	height: 30px;
	padding: 0;
	margin: 0;
	font-size: 12px;
	line-height: 30px;	
	padding-left: 10px;
	color: #FFF;
	
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

#chat h1:hover{
	background-color:#888;
	
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

#chat a{
	text-decoration:none;	
	color:#FFF;
}

#chat .chatAtention{
	color:#FFF;	
	text-align:justify;
	padding: 5px;
	border-bottom: 1px solid #033;
	background-color: #CCC;
	color:#060;
	text-shadow:none;
}

.linhaChat{
	position:relative;
	height: 44px;
	width: 200px;	
	padding-top: 4px;
	padding-left: 4px;
	cursor:pointer;
	background-color: transparent;
	
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

.linhaChat:hover{
	background-color:#888;
	
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

.imgChat{
	position:relative;
	height: 40px;
	width: 40px;
	background-color:#666;
	float:left;
}

.nomeContato{
	position:relative;
	height: 15px;
	width: 132px;
	text-shadow: none;
	margin-left: 4px;
	float:left;
}

.statusContatoOn{
	position:relative;
	height: 10px;
	width: 10px;
	background-color:#0C0;	
	float:left;
	margin-left: 4px;
	margin-top: 2px;
	
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
}

.statusContatoOff{
	position:relative;
	height: 10px;
	width: 10px;
	background-color:#F00;	
	float:left;
	margin-left: 4px;
	margin-top: 2px;
	
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
}

.conversas{
	position:fixed;
	height: 300px;
	width: auto;
	z-index: 30000;
	right: 201px;
	bottom: 0px;
}

.conversa{
	position:relative;
	float:left;
	width: 250px;
	height: 300px;
	background-color:#CCC;
	border: 1px solid #CCC;
	margin-right: 10px;
}

.conversa a{
	text-decoration:none;
	color:#333;	
	
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

.conversa a:hover{
	text-decoration:none;
	color:#FFF;	
	
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

.conversaSair{
	position:absolute;
	top: 0;
	right: 0;
	height: 25px;
	line-height: 25px;
	width: 25px;
	text-shadow:none;
	text-align:center;
	cursor:pointer;
}

.conversaAmigo{
	position:relative;
	padding-left: 5px;
	height: 25px;
	width: 220px;
	line-height: 25px;
	background-color:#999;
	text-shadow:none;
	font-weight:bold;
}

.conversaArea{
	position:relative;
	height: 215px;
	background-color:#FFF;	
	overflow:auto;
}

.conversaForm{
	position:relative;
	height: 50px;
	padding: 3px;
	width: 242px;
	margin-left:1px;
	background-color:#FFF;
	border: 0;
	text-shadow:none;
	resize:none;
}

.linhaConversa{
	position:relative;
	display:table;
	width: 220px;
	border-bottom: 1px solid #EFEFEF;	
	text-shadow:none;
	padding: 4px;
	clear:both;
}

.imgConversa{
	position:relative;
	height:40px;	
	width: 40px;
	float:left;
	margin-right: 4px;
}

#chatSolicitacoes{
	position:absolute;
	top: -4px;
	right: 0;
	height: 20px;
	line-height:20px;
	width: 200px;
	padding-left: 5px;
	text-shadow:none;
	font-weight:bold;
	background-image:url(../_img/layout/bg_chat_solicitacoes.jpg);
	border:1px solid #999;
	cursor:pointer;
	
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

#chatSolicitacoes:hover{
	color:#CCC;
	
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

#solicitacoes{
	position:absolute;
	width: 205px;
	height:auto;
	display:none;
	background-color:#888;
	right: 0;
	top: 18px;
	border: 1px solid #999;
}

.linhaSolicitacao{
	position:relative;
	height: 40px;
	width: 197px;
	padding: 4px;
	border-bottom: 1px solid #999;	
	clear:both;
	text-shadow:none;
	
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

.linhaSolicitacao a{
	text-decoration:none;	
	font-weight:bold;
	color:#FC3;
	
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

.linhaSolicitacao a:hover{
	color:#FFF;
	
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
}


.linhaSolicitacao:hover{
	background-color:#999;
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

.imgSolicitacao{
	position:relative;
	height: 40px;
	width: 40px;
	background-color:#666;
	float:left;
}

.nomeSolicitacao{
	position:relative;
	height: 20px;
	width: 150px;
	float:left;	
	margin-left:5px;
}

.btAceitarSolicitacao{
	position:absolute;
	bottom: 4px;
	left: 50px;
}

.btRecusarSolicitacao{
	position:absolute;
	bottom: 4px;
	right: 4px;
}

.chatExcluir{
	position:absolute;
	font-weight:bold;	
	right: 10px;
	bottom: 5px;	
}