 ul.notifications {
	list-style: none;
	width: 366px;
	min-width: 366px;
	border-radius: 4px;
	background: none;
	background-color: #FFFFFF;
	min-height: 50px;
	position: absolute;
	z-index: 1000;
	top: 40px;
	right: 21px;
	padding: 0;
	box-sizing: border-box;
	box-shadow: 2px 2px 10px 2px #cccccc;
}

/* Arrow */
/* ul.notifications:after {
	border-bottom: 8px solid #667176;
	border-left: 6px solid rgba(0, 0, 0, 0);
	border-right: 6px solid rgba(0, 0, 0, 0);
	content: "";
	height: 0;
	right: 25px;
	position: absolute;
	top: -8px;
	width: 0;
} */

ul.notifications li {
	color: #B2B2B2;
	padding: 10px;
}

ul.notifications li.notification {
	border-bottom: 1px solid #edeeef;
	cursor: pointer;
}

div.notifierThumbnail {
	background-image: url("../img/thumbnails/info.png");
	height: 32px;
	width:  32px;
	float: left;
}

div.notifierTextContainer {
	padding-left: 42px; /* 32px (thumbnail) + 10px (padding) */
	position: relative;
}
div.notifierTextContainer div.notifierError {
    color: #c73d35;
}
div.notifierTextContainer div.notifierHeader {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

div.notifierFooter,
span.originator,
.timeago.date {
	font-size: 11px;
	color: #B2B2B2;
}

ul.notifications li.notification.unread {
	color: #414B50;
}

ul.notifications li.notification:hover {
	background-color: #E6F0F2;
	color: #414B50;
}

ul.notifications li:not(.notification):first-child {
	background: linear-gradient(#667176, #2A2E30) repeat scroll 0 0 rgba(0, 0, 0, 0);
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	color: #FFFFFF;
	font-weight: bold;
}

ul.notifications li:not(.notification):last-child {
	text-align: center;
}

ul.notifications li.notification:hover .notification-cancel,
ul.notifications li.notification:hover .notification-read {
	background-image: url("../../common/img/misc/check.png");
	background-position: 0 0;
/* 	float: right; */
    position: absolute;
    right: 3px;
    bottom: 3px;
/*     display: inline-block; */
	height: 16px;
	width: 16px;
}

ul.notifications li.notification:hover .notification-cancel {
    background-image: url("../../common/img/misc/close_white_16x32.png");
}

ul.notifications li.notification:hover .notification-cancel:hover,
ul.notifications li.notification:hover .notification-read:hover {
	background-position: 0px 32px;
	cursor: pointer;
}

ul.notifications li.notification.error,
ul.notifications li.notification.error:hover {
	background-color: #c73d35;
	color: #FFFFFF;
}