/*------------------------------------
	Title: Cross-Browser Text Drop Shadows
	Author: Scott Jehl, www.scottjehl.com, scott@scottjehl.com
	Date: 7/19/06
	http://creativecommons.org/licenses/by-nc-sa/2.5/
--------------------------------------*/

/*Appearance of Drop Shadow Text*/
span.shadow {
	top: 1px;
	left: 2px;
	color: #000;
}






/*necessities*/
.highContrast {
	position: relative;
	color: #fff;
}
.highContrast span {
	position: relative;
}
span.shadow {
	position: absolute;
}	



