.textShadow {
	font-weight : bold;
	font-size : 50px;
	text-shadow : 10px 10px 1px red;
}
.multiTextShadow {
	font-weight : bold;
	font-size : 50px;
	text-shadow : 10px 10px 1px red, 5px 5px 0px blue;
}
.lightText {
	font-weight : bold;
	font-size : 50px;
	text-shadow : 0 0 20px red;
}
.embossText {
	font-weight : bold;
	font-size : 50px;
	text-shadow : 2px 2px 1px #333;
}
.blurText {
	color : transparent;
	font-weight : bold;
	font-size : 50px;
	text-shadow : 0 0 5px #f96;
}
.hollowText {
	color : transparent;
	font-weight : bold;
	font-size : 50px;
	text-shadow : -1px -1px 0 #fff, 1px 1px 0 #333;
}
/*css的class不能用数字开头，.3DText将无法生效*/
.ThreeDText {
	color : #fff;
	font-weight : bold;
	font-size : 50px;
	text-shadow: 1px 1px rgba(197, 223, 248, 0.8), 2px 2px rgba(197, 223, 248, 0.8), 3px 3px rgba(197, 223, 248, 0.8), 4px 4px rgba(197, 223, 248, 0.8), 5px 5px rgba(197, 223, 248, 0.8), 6px 6px rgba(197, 223, 248, 0.8);
}
