<style type="text/css">
/*   */
h1, span {
font: bold 10px verdana, sans-serif;
}
h1 {
	position: relative; /* on positionne le conteneur H1 pour placer ensuite le SPAN */
	color: Red;
}
h1 span {
	position: absolute; /* on superpose le SPAN sur le titre */
	top: -1px; /* on décale le SPAN */
	left: -1px;
	color: Black;
	azimuth: inherit;
}

</style>
