/* 
   USE: <link rel="stylesheet" type="text/css" href="tools/forcescrollbars.css" />

   DOCTYPE: XHTML 1.0 Transitional
   WORKS FOR: FIREFOXmac, FIREFOXpc, SAFARImac, IE7pc, (IE6pc - if needed)

   Forces a vertical scrollbar on the page even if none is needed. 
   Non-scrolling pages will now scroll by 1px (essentially unnoticeable).
   Forcing the scrollbar prevents the layout from shifting side-to-side 
   when navigating between scrolling and non-scrolling pages and when
   turning a non-scrolling page into a scrolling page by dynamically 
   displaying/adding extra content. 
*/

html { height:100%;padding-bottom:1px; }  /* FIREFOXmac, FIREFOXpc, SAFARImac, IE7pc */ 

/*
   IE6pc SUPPORT:
   In IE6pc and IE7pc, the vertical scrollbar is always present even if
   the page is not scrollable. We use a method here that works for IE7pc 
   but breaks (invisibily) for IE6pc. If needed (you shouldn't need it), 
   IE6pc support is provided below (commented out) - note that if you 
   turn it on, margins and padding on the body must be 0px. You will have 
   to add a wrapper div within the body if you want a page with margins 
   or padding.
*/

/* body { height:100%;margin:0;margin-bottom:1px; } */ /* IE6pc SUPPORT */