/*------------------------------------
	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/
	
	NOTE: ITEMS WITH A CLASS OF 'highContrast' will show shadows! awesome
--------------------------------------*/

/*Appearance of Drop Shadow Text*/
span.shadow {
	top: 9px;
	left: 11px;  
	/*font:bold 11px Tahoma;*/
	color: #5A553F;  
	/*width:111px; DATON*/
	    
}

/*necessities*/
.highContrast {
	position: relative;
	color: #fff; filter:alpha(opacity=85); -moz-opacity: 0.85; opacity: 0.85; filter:progid:DXImageTransform.Microsoft.Alpha(opacity=85);
}
.highContrast span {
	position: relative;
}
span.shadow {
	position: absolute;
}	


