/* LIVE CHAT */
#live-chat-container{}
	#live-chat-wrapper{
		position: fixed;
		bottom: 0px;
		right: 50px;
		width: 400px;
		z-index: 100;
	
		-webkit-border-top-left-radius: 5px;
		-webkit-border-top-right-radius: 5px;
		-moz-border-top-left-radius: 5px;
		-moz-border-top-right-radius: 5px;
		border-top-left-radius: 5px;
		border-top-right-radius: 5px;
	
		-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.6);
		box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.6);
	}
	/*#live-chat-wrapper.reduced{
		bottom: -437px;
	}*/
		#live-chat{
			padding: 0px;
			border: 1px solid #62CBE2;
			border-bottom: none;
			
			-webkit-border-top-left-radius: 5px;
			-webkit-border-top-right-radius: 5px;
			-moz-border-top-left-radius: 5px;
			-moz-border-top-right-radius: 5px;
			border-top-left-radius: 5px;
			border-top-right-radius: 5px;
		}
			#live-chat-title{
				background-color: #62CBE2;
				padding: 5px 10px;
				color: #FFFFFF;
				font-weight: bolder;
				font-size: 12px;
			}
				#live-chat-tool-close{
					display: block;
					height: 16px;
					width: 16px;
					margin-left: 10px;
					background: url("../../gfx/common/template/icon_close.png") no-repeat 0px -16px;
					cursor: pointer;
				}
				#live-chat-tool-window{
					display: block;
					height: 16px;
					width: 16px;
					margin-left: 10px;
					background: url("../../gfx/common/template/icon_down.png") no-repeat 0px -16px;
					cursor: pointer;
				}
				#live-chat-wrapper.reduced #live-chat-tool-window{
					background-image: url("../../gfx/common/template/icon_up.png");
				}
				#live-chat-tool-close:hover,
				#live-chat-tool-window:hover{
					background-position: 0px 0px;
				}
			
			#live-chat-header{
				/*background: url("../../gfx/common/template/communication_next.png") no-repeat center center;*/
				background-color: #E8F7FD;
				padding: 10px;
			}
				#live-chat-member{}
					#live-chat-member #live-chat-pseudo{
						font-size: 13px;
						color: #4173A6;
					}
					#live-chat-name{
						color: #000000;
					}
					#live-chat-birthday{
						color: #000000;
						font-size: 13px;
					}
					#live-chat-images{
						margin-top: 7px;
					}
						#live-chat-images .live-chat-images{
							padding: 2px;
							background-color: #FFFFFF;
							border: 1px solid #EFEFEF;
							margin-top: 2px;
						}
				#live-chat-spears{
					padding-top: 30px;
					padding-left: 30px;
				}
				#live-chat-expert{}
					#live-chat-expert #live-chat-pseudo{
						font-size: 13px;
						color: #4173A6;
						padding-left: 3px;
					}
					#live-chat-image{
						padding: 2px;
						background-color: #FFFFFF;
						border: 1px solid #EFEFEF;
						margin-top: 3px;
					}
			#live-chat-historic{
				background-color: #FFFFFF;
				padding: 10px;
			}
				#live-chat-messages{
					height: 215px;
					overflow: auto;
				}
				.live-chat-messages{
					padding-top: 2px;
					padding-bottom: 2px;
				}
					.live-chat-info{
						color: #000000;
					}
					.live-chat-pseudo{
						font-weight: bold;
					}
					.live-chat-pseudo.red{
						color: #f0248a;
					}
					.live-chat-pseudo.blue{
						color: #3aadc6;
					}
				#live-chat-writting{
					background: url("../../gfx/common/template/writting.png") no-repeat 0px 0px;
					padding-left: 15px;
					color: #AAAAAA;
					cursor: default;
				}
			#live-chat-dialog{
				background-color: #E8F7FB;
				padding: 10px;
			}
				#live-chat-refresh{
					cursor: pointer;
					font-size: 13px;
					color: #4173A6;
					padding-bottom: 5px;
				}
					#live-chat-refresh img{
						vertical-align: top;
					}
				#live-chat-time{
					padding-bottom: 3px;
				}
					#live-chat-time span{
						font-weight: bold;
						color: #000000;
					}
				#live-chat-textarea{
					width: 370px;
					height: 50px;
				}
				
				#live-chat-smiley{
					padding: 5px 5px;
				}
					#live-chat-smiley .lc_smileys{
						cursor: pointer;
					}
				
				#live-chat-send{
					margin-top: 5px;
					float: right;
				}
	/* reduced */
	#live-chat-wrapper.reduced #live-chat-header,
	#live-chat-wrapper.reduced #live-chat-historic,
	#live-chat-wrapper.reduced #live-chat-dialog{
		display: none;
	}