/*------------------------------------
	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: 1px;
	color: #FFF;
	font-size: 15px;

}
/*necessities*/
.highContrast {

	position: relative;
	color: #036;
		font-size: 15px;
}
.highContrast span {
	position: relative;
}
span.shadow {
	position: absolute;
}	


