.chatbox {
	position: fixed;
	position:expression("absolute");
	width: 225px;
	display:none;
}

.chatboxhead {
	background: rgba(39, 162,186, 0.75);
	padding:7px;
	color: #ffffff;

	border-right:1px solid #fff;
	border-left:1px solid #fff;
	border-top:1px solid #fff;
}

.chatboxblink {
	border-right:1px solid #fff;
	border-left:1px solid #fff;
	border-top:1px solid #fff;
	-webkit-animation: animationBlink 0.5s; /* Chrome, Safari, Opera */
    animation: animationBlink 5s;
}
@-webkit-keyframes animationBlink {
    from {background: rgba(39, 162,186, 0);}
    to {background: rgba(39, 162,186, 0.75);}
}

/* Standard syntax */
@keyframes animationBlink {
    from {background: rgba(39, 162,186, 0);}
    to {background: rgba(39, 162,186, 0.75);}
}

.chatboxcontent {
	font-family: arial,sans-serif;
	font-size: 13px;
	color: #fff !important;
	height:200px;
	width:209px;
	overflow-y:auto;
	overflow-x:auto;
	padding:7px;
	border-left:1px solid #cccccc;
	border-right:1px solid #cccccc;
	border-bottom:1px solid #eeeeee;
	background: rgba(0, 0, 0, 0.8);
	line-height: 1.3em;
}

.chatboxinput {
	padding: 5px;
	background: rgba(0, 0, 0, 0.2);
	border-left:1px solid #cccccc;
	border-right:1px solid #cccccc;
	border-bottom:1px solid #cccccc;
}

.chatboxtextarea {
	width: 206px;
	height:44px;
	padding:3px 0pt 3px 3px;
	border: 1px solid #eeeeee;
	margin: 1px;
	overflow:hidden;
	color: white !important;
	background: rgba(0, 0, 0, 0.8);
}

.chatboxtextareaselected {
	border: 2px solid #ff9900;
	margin:0;
}

.chatboxmessage {
	margin-left:1em;
}

.chatboxinfo {
	margin-left:-1em;
	color:#666666;
	display: none;

}

.chatboxmessagefrom {
	margin-left:-1em;
	font-weight: bold;
}

.chatboxmessagecontent {
}

.chatboxoptions {
	float: right;
}

.chatboxoptions a {
	text-decoration: none;
	color: white;
	font-weight:bold;
	font-family:Verdana,Arial,"Bitstream Vera Sans",sans-serif;
}

.chatboxtitle {
	float: left;
}