#growl {
	position:fixed;
	top:0; right:5px;
	z-index:9999;
}
* html #growl { /* IE fix */
	position:absolute;
	right: 				auto;
	bottom: 			auto;
	left: 				expression( ( -240 + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' ); 
  	top: 				expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}

#growl .item {
	background-color: 		#000;
	color: 					#fff;
	opacity: 				.85;
	filter: 				alpha(opacity = 85);
	zoom: 					1;
	width: 					235px;
	/*padding: 				10px;*/
	margin-top: 			5px;
	margin-bottom: 			5px;
	font-family: 			Tahoma, Arial, Helvetica, sans-serif;
	font-size: 				10px;
	text-align: 			left;
	display: 				none;
	-moz-border-radius: 	5px;
	-webkit-border-radius:	5px;
}
#growl .item  div {
	padding:10px;
}

#growl .item h2 {
	font-weight: 			bold;
	font-size:				12px;
	margin: 0 0 10px 0;
}

#growl .message {
	background:#007800;
}

#growl .error {
	background:#ec977b;
}

#growl .notice {
	background:#0099FF;
}