#notifier { 
	width: 250px; 
	
	position: fixed; 
	top: 0px; 
	right: 0px; 
	
	font-size: 12px;
	z-index: 9999; 
	
	/* IE 6 Fix */
	_position: absolute; 
	_top: expression( eval(document.documentElement.scrollTop) + 10 +"px" );
}

#notifier .n-box { 
	position: relative; 
	
	margin-bottom: 10px;
	
	color: #fff; 
	background: #000; 
	
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	
	cursor: pointer;
}
#notifier .n-box h3 { color: #fff; font-size: 18px; font-weight: bold; margin-bottom: 5px; }
#notifier .n-box p { margin: 0; }

#notifier .n-box.n-notice { background: #409a2b; color: #fff; opacity: 0.95; font-size: 18px; line-height: 30px; padding-left: 10px ;}
#notifier .n-box.n-notice h3 { color: #333; }
#notifier .n-box.n-error { background: #BC0000; color: #fff; opacity: 0.8; font-size: 18px; line-height: 30px; padding-left: 10px ;}