This may be the way to do it:
1. From the CHM Menu click Options
2. Click Internet Options
3. From Internet Options window click Accessibility button
4. Check box Ignore font styles specified on Web pages
5. Check box Ignore font sizes specified on Web pages
6. Click OK
7. Click Fonts button and select the font you want
8. Click OK
That's it.
Here is the code to get the Current Quarter End for a Given FYE Date: 1: public static DateTime ThisQuarterEnd(this DateTime date, DateTime fyeDate) 2: { 3: IEnumerable<DateTime> candidates = 4: QuartersInYear(date.Year, fyeDate.Month).Union(Quarte... + 1, fyeDate.Month)); 5: return candidates.Where(d => d.Subtract(date).Days >= 0).First(); 6: } 7: 8: public static IEnumerable<DateTime> QuartersInYear(int year, int q4Month) 9: { 10: int q1Month = 3, q2Month = 6, q3Month ......