Cannot change font color in hint-block div.

I am sure this is just something small, but I cannot for the life of me get the font color to change.

I have made this change in the default css/site.css file.

I can change everything else, text-align(Works), background-color(Works), font-weight(Works).

I just cannot get the font color to change.




.hint-block

{

	color: red;

	text-align: right;

	font-weight: bold;

}



Try with:




.hint-block

{

        color: red !important;

}



Works perfectly, thank you very much.