<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 *  Notification CSS
 *   author: Anthony Dillon
 */

.notification{
	position:absolute;
	width:350px;
	height:72px;
	background:#383336;
	-moz-border-radius:4px 4px 4px 4px;
	-webkit-border-radius:4px 4px 4px 4px;
	border-radius:4px 4px 4px 4px;
	-moz-box-shadow: 0px 0px 5px #000;
	-webkit-box-shadow: 0px 0px 5px #000;
	box-shadow: 0px 0px 5px #000; 
	overflow:hidden;
	top:100px;
	right:5px;
	display:none;
	z-index:10;
}

.notification img{
	float:left;
	margin:15px 15px 10px 10px;
}

.notification p{
	margin:0px;
}

.notification .title{
	font-weight: bold;
	margin-top:10px;
	font-size:14px;
}

.notification .description{
	font-size:13px;
}


</pre></body></html>