/*------------------------------------
	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;
	_left: 11px;
	color: #3e2b0c;
	width: 100%;
	text-align: center;
}

/*necessities*/
.highContrast {
	position: relative;
	font-size: 11px;
}
.highContrast span {
	position: relative;
}
span.shadow {
	position: absolute;
}	



