/*------------------------------------
	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 {
 
	color: #576F84; 
	white-space:nowrap; 
	padding-left: 1px;
	padding-top: 1px;
	xtop: 1px;
	xleft: 1px; 
 
	
	 
	
}
 
/*necessities*/
.toplink  {
	position: relative;
	color: #ffffff;
	white-space: normal;
	
 
}
.toplink span  {
	position: relative; 
 
}
span.shadow {
	position: absolute;
	display:inline-block !important;
}	
 


