I am unable see my specials with old prices with strike through and the new one with red text.

I finally get the red colour over the new special prices by adding to the CSS

Code:
.productSpecialPrice, .productSalePrice, .productSpecialPriceSale, .productPriceDiscount {
	color: #ff0000;
	}
I can see same CSS has also following line but not doing it. Because when I inspect that element it shows a

Code:
<span class="normalprice">
Naturally I do not want ALL my "normalprice" crossed out. Only when they are on special.

Code:
.productSpecialPriceSale {
	text-decoration:line-through;
}
Can anyone please suggest a solution?