/* LIVE CHAT */
#live-chat{
	position: fixed;
	bottom: 0px;
	right: 50px;
	width: 400px;
	z-index: 100;

	-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
}

	.lc-title{
		background-color: #222222;
		padding: 5px 15px;
	}
		#lc-close{
			cursor: pointer;
		}
		#lc-window{
			background-position: 0 -672px;
			cursor: pointer;
			
			margin-right: 10px;
		}
		#live-chat.reduced #lc-window{
			background-position: 0px -688px;
		}
		
	.lc-header{
		background-color: #333333;
		padding: 15px;
	}
		.lc-member{
			font-size: 12px;
			color: #FFFFFF;
		}
			.lc-member-birthday{
				color: #999999;
			}
			
			.lc-images{
				margin-right: 20px;
			}
				.lc-images div{
					margin-left: 10px;
				}
				
		.lc-expert{
			font-size: 12px;
			color: #FFFFFF;
		}
			.lc-expert-pseudo{
				font-size: 16px;
				margin-right: 20px;
				margin-top: 7px;
			}
			.lc-expert-code{
				color: #37B2DA;
			}
			
			.avatar-custom-img{
				width: 32px;
				height: 32px;

				background-size: cover;
				background-position: center;
				overflow: hidden;
				
				border-radius: 40px;
				background-color: #E5E5E5;
			}
			
	.lc-historic{
		background-color: #FFFFFF;
	}
		
		#lc-messages {
			padding: 15px;
			
			height: 215px;
			overflow: auto;
		}
			.lc-messages{
				border-radius: 3px;
				
				padding: 10px;
				margin-top: 10px;
				max-width: 75%;
				
				background-color: #D9EDF7;
				border: 1px solid #BBE8F2;
			}
			.lc-messages.fleft{
				background-color: #DFF0D8;
				border: 1px solid #D6EAC5;
			}
			.lc-date{
				font-size: 9px;
				color: #BFBFBF;
				
				padding-top: 4px;
			}
			
			.lc-notice{
				font-size: 10px;
				color: #999999;
				text-align: center;
				
				padding: 5px 20px;
				
				background-color: #F4F4F4;
				margin-bottom: 10px;
			}
			
		#lc-writting {
			padding: 5px 15px;
			font-size: 10px;
			
			color: #CCCCCC;
			cursor: default;
		}
			#lc-writting .icons16{
				background-position: 0 -718px;
			}
	.lc-dialog{
		background-color: #F2F2F2;
		padding: 20px 15px;
	}
	
		#lc-refresh{
			cursor: pointer;
			
			font-size: 11px;
			text-transform: uppercase;
			color: #333333;
			font-weight: 500;
			
			padding-bottom: 5px;
		}
		
		#lc-time{
			padding-bottom: 3px;
		}
			#lc-time span.time{
				font-weight: 500;
			}
			#lc-time span.account_minutes{
				font-size: 90%;
				opacity: 0.5;
			}
			#lc-time span.chat_promo_txt{
				color: #3EA1BD;
			}
		
		#lc-textarea{
			width: 370px;
			height: 60px;
			
			font-size: 12px;
		}
		
		.lc-smileys{
			padding: 5px 5px;
		}
			.lc-smileys .lc_smiley{
				cursor: pointer;
			}
		
		#lc-send{
			margin-top: 5px;
			float: right;
		}
		
/* reduced */
#live-chat.reduced .lc-header,
#live-chat.reduced .lc-historic,
#live-chat.reduced .lc-dialog{
	display: none;
}