﻿/* Drop Shadow Stuff */
#shadowText{
	font-size: 3em; /* optional. just to increase the font size. */
	display: block;
	line-height: 1em;
	color: #666; /* shadow color */
	background-color: transparent;
	white-space: nowrap; /* wrapping breaks the effect */
}

#shadowText:before,
#shadowText:after{
	content: "Test"; /* generated shadowText */
	display: block;
}

#shadowText:before{
	margin-bottom: -1.05em;
	margin-left: 0.1ex;
	color: #ccc; /* shadow color */
	background-color: transparent;
}

#shadowText:after{
	margin-top: -1.05em;
	margin-left: -0.1ex;
	color: #fff; /* shadowText color */
	background-color: transparent;
}
