<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
	"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg width="100%" height="100%">
	<defs>
		<filter id="Drop_Shadow" filterUnits="objectBoundingBox" x="-10%" y="-10%"
			width="150%" height="150%">
			<feGaussianBlur in="SourceAlpha" stdDeviation="3" result="blurredAlpha"/>
			<feOffset in="blurredAlpha" dx="3" dy="3" result="offsetBlurredAlpha"/>
			<feFlood result="flooded" style="flood-color:rgb(99,7,7);flood-opacity:0.65"/>
			<feComposite in="flooded" operator="in" in2="offsetBlurredAlpha"
				result="coloredShadow"/>
			<feComposite in="SourceGraphic" in2="coloredShadow" operator="over"/>
		</filter>
	</defs>
	<text x="126px" y="155px" style="fill:rgb(0,0,0);font-size:30;font-family:@SimSun;filter:url(#Drop_Shadow)">DHTML NIRVANA</text>
</svg>

