#messages {
	position: relative;
	background: #ffffff;
	border: 1px solid #e1e1e1;
	-moz-box-shadow:    0 0 5px 2px #ccc;
	-webkit-box-shadow: 0 0 5px 2px #ccc;
	box-shadow:         0 0 5px 2px #ccc;
	width: 300px;
	height: 250px;
	z-index: 9999;
	right: 0px;
	left: auto;
	position: absolute;
	top: 54px;
	display: none;
}
#messages:after, #messages:before {
	bottom: 100%;
	left: 80%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

#messages:after {
	border-color: rgba(156, 151, 149, 0);
	border-bottom-color: #ffffff;
	border-width: 15px;
	margin-left: -15px;
}
#messages:before {
	border-color: rgba(242, 238, 245, 0);
	border-bottom-color: #e1e1e1;
	border-width: 18px;
	margin-left: -18px;
}

.message-item{
	float: left;
	width: 100%;
	min-height: 50px;
	border-bottom: 1px solid #cccccc;
	cursor: pointer;
}
.message-unread{
	background: #d5d1d1;
}
.message-item .message-icon{
	float: left;
	margin-top: 5px;
	margin-left: 5px;
	width: 40px;
	height: 40px;
}
.message-item .message-right{
	width: 240px;
	float: left;
}
.message-item .message-icon img{
	max-width: 40px;
	max-height: 40px;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
}
.message-item .message-user-fullname{
	float: left;
	font-size: 12px;
	font-weight: bold;
	font-family: Arial;
	width: 240px;
	margin: 5px;
	margin-top: 10px;
}
.message-item .message-user-status{
	float: right;
	margin-right: 10px;
}
.user-online{
	background:#11a400;
	border-radius: 4px;
	width: 8px;
	height: 8px;
}
.user-offline{
	background:#979797;
	border-radius: 4px;
	width: 8px;
	height: 8px;
}
.message-item .message-text{
	float: left;
	margin: 5px;
	font-family: Arial;
	font-size: 11px;
	word-break: break-all;
}
.message-item .message-date{
	float: left;
	margin: 3px;
	font-family: Arial;
	color: #9b9b9b;
	font-size: 10px;
	width: 234px;
}
.message-own .message-text{
	float: right;
}
body{
	margin: 0;
}
.popup-box
{
    display: none;
    position: fixed;
    z-index: 9999;
    bottom: 0px;
    right: 220px;
    height: 325px;
    background-color: #ffffff;
    width: 300px;
    border: 1px solid rgba(29, 49, 91, .3);
    outline: none;
}

.popup-box .popup-head
{
    background-color: #253A6C;
    padding: 5px;
    color: white;
    font-size: 10pt;
    font-family: 'Open Sans';
    clear: both;
}

.popup-box .popup-head .popup-head-left
{
    float: left;
}

.popup-box .popup-head .popup-head-right
{
    float: right;
    opacity: 0.5;
}

.popup-box .popup-head .popup-head-right a
{
    text-decoration: none;
    color: inherit;
}

.popup-box .popup-messages
{
	height: 260px;
	border-bottom: 1px solid #ccc;
    overflow-y: auto;
}
.popup-box .message_input{
	width: 296px;
	margin-left: 2px;
	margin-right: 2px;
	outline: none;
	font-size: 9pt;
	height: 28px;
	display: inline-block;
	word-break: break-all;
	margin-top: 10px;
}
.popup-box .message_input br{
	display: none;
}
