@charset "utf-8";
/* CSS Document */

  /****************************/
 /*** LIVE CHAT PROPERTIES ***/
/****************************/

#livechat{
	font-family: Arial, Helvetica, sans-serif;		/* FONT FAMILY OF THE LIVE CHAT ***
	background-color: #FFF;							/* BACKGROUND COLOR OF THE LIVE CHAT */
}

#livechatheader{
	color: #FFFFFF;									/* CHAT HEADER FONT COLOUR */
}

.chatgreen{
	background-color: #07ae0b;						/* THE COLOUR OF THE CHAT WHEN IT IS GREEN */
}

.chatred{
	background-color: #F00000;						/* THE COLOUR OF THE CHAT WHEN IT IS RED (JUST RECIEVED MESSAGE) */
}

.green{
	color: #090;									/* YOUR USERNAME's FONT COLOUR */
}

#chat{		
	color: #575757;									/* LIVE CHAT MESSAGES' FONT COLOUR */
}

  /********************************************************************************/
 /*** DO NOT EDIT ANYTHING BELOW THIS POINT UNLESS YOU KNOW WHAT YOU ARE DOING ***/
/********************************************************************************/

.green{
	color: #090;
}

.show{
	
}

.hidden{

}

.lastsent{

}

.botsent{
	
}

.italics{
	font-style: italic;
}

.username{
	font-weight: bold;
}


.chatgreen{
	background-color: #07ae0b;
}

.chatred{
	background-color: #F00000;
}

#livechat{
	position: fixed;
	right: 2%;
	bottom: -300px;
	width: 280px;
	height: 360px;
	background-color: #FFF;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	z-index: 99999;
	font-family: Arial, Helvetica, sans-serif;
	opacity: 0.5;
}

#livechatheader{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 280px;
	height: 60px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	line-height: 60px;
	font-weight: bold;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	color: #FFFFFF;
}

#livechatheader:hover{
	cursor: pointer;
}

#livechatopen{
	position: absolute;
	right: 20px;
	top: 23px;
	width: 20px;
	height: 15px;
	background-image: url("../img/chatheaderubttons.html");
	background-position: 20px 0px;
	display: block;
}

#livechatclose{
	position: absolute;
	right: 20px;
	top: 23px;
	width: 20px;
	height: 15px;
	background-image: url("../img/chatheaderubttons.html");
	background-position: 0px 0px;
	display: none;
}

#pickausername{
	margin-top: 60px;
	width: 280px;
	height: 300px;
	background-color: #E7E7E7;
	color: #545454;
	display: none;
	z-index: 10000;
	position: absolute;
	opacity: 0;
}

#chatusername{
	padding: 5px;
}

#pickausername p{
	margin: 0px;
}

#startchatting{
	width: 140px;
	height: 40px;
	background-color: #07ae0b;
	font-weight: bold;
	line-height: 40px;
	color: #FFF;
	text-align: center;
	position: absolute;
	right: 70px;
	bottom: 80px;
}

#startchatting:hover{
	cursor: pointer;
}

#connectingtochat{
	margin-top: 60px;
	width: 280px;
	height: 300px;
	background-color: #E7E7E7;
	color: #545454;
	display: none;
	opacity: 0;
	z-index: 100000;
	position: absolute;
}

#connectingtochat p{
	margin-left: 20px;
	margin-right: 20px;
	padding-top: 20px;
	text-align: center;
	font-weight: bold;
}

#chatloading{
	width: 128px;
	height: 15px;
	background-image: url("../img/chatloader.html");
	margin: 0px auto;
	margin-top: 70px;
}

#connectingtochat{
	margin-top: 60px;
	width: 280px;
	height: 300px;
	color: #545454;
	display: none;
	opacity: 0;
}

#chat{
	width: 280px;
	height: 300px;
	position: absolute;
	top: 60px;
	display: block;
	opacity: 1;
	color: #575757;
	background-color: #FFFFFF;
}

#messages{
	width: 280px;
	height: 240px;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	overflow: scroll;
	overflow-x: hidden;
	font-size: 14px;
}

#messages li{
	position: relative;
	width: 240px;
	height: auto;
	border-bottom: 1px solid #DDD;
	padding: 20px;
	margin: 1px;
	display: block;
	line-height: 20px;
}

#chatbox{
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 260px;
	height: 40px;
	resize: none;
	outline: none;
	border: none;
	border-top: 1px solid #DDDDDD;
	padding: 10px;
	font-family: Arial, Helvetica, sans-serif;
}