/* ==================================================================================
THE TRICK
Add text-shadow on the top-left and the bottom-right to smooth text
=================================================================================== */
h1.title { /* It works very well with Windows XP (standard / cleartype method) */
text-shadow:-1px -1px 1px rgba(255,255,255,0.2), /* top-left */
1px 1px 1px rgba(255,255,255,0.2), /* bottom-right */
1px 1px 1px rgba(0,0,0,0.7); /* shadow */
}